aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorAdam Vandenberg2014-05-17 13:13:07 -0700
committerAdam Vandenberg2014-05-17 13:13:07 -0700
commit7448fd1532ae1c1709fe2f03ffe0dc188a134b3e (patch)
treee6af65f76b0061ef80647b5be9a4050a57ffef70 /Library
parent04b3aa11ed3846e2262d89b0c228a2e63edf74ab (diff)
downloadhomebrew-7448fd1532ae1c1709fe2f03ffe0dc188a134b3e.tar.bz2
tetgen: modernize
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/tetgen.rb12
1 files changed, 6 insertions, 6 deletions
diff --git a/Library/Formula/tetgen.rb b/Library/Formula/tetgen.rb
index e95bcb5ea..78a6019a7 100644
--- a/Library/Formula/tetgen.rb
+++ b/Library/Formula/tetgen.rb
@@ -1,15 +1,15 @@
-require 'formula'
+require "formula"
class Tetgen < Formula
- homepage 'http://tetgen.org/'
- url 'http://tetgen.org/files/tetgen1.4.3.tar.gz'
- sha1 '16c6de93837a34c8661dd3bfcc8171591a93564a'
+ homepage "http://tetgen.org/"
+ url "http://tetgen.org/files/tetgen1.4.3.tar.gz"
+ sha1 "16c6de93837a34c8661dd3bfcc8171591a93564a"
def install
system "make" # build the tetgen binary
system "make tetlib" # build the library file libtet.a
- bin.install 'tetgen'
- lib.install 'libtet.a'
+ bin.install "tetgen"
+ lib.install "libtet.a"
end
test do