aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorMatt Stanton2011-04-12 10:08:59 -0400
committerAdam Vandenberg2011-04-14 08:53:25 -0700
commitfd008347886b1832ce996a22ea2484b6ffb93ad5 (patch)
treed9760e0fbae53916845b785a5c8ffed73168333e /Library
parent2b1b4e124d02dcd76c8fc2d14107073d8135a2f2 (diff)
downloadhomebrew-fd008347886b1832ce996a22ea2484b6ffb93ad5.tar.bz2
gts 0.7.6
GTS is the GNU Triangulated Surface Library. It provides functions for working with surfaces meshed with triangles. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/gts.rb16
1 files changed, 16 insertions, 0 deletions
diff --git a/Library/Formula/gts.rb b/Library/Formula/gts.rb
new file mode 100644
index 000000000..0fba99841
--- /dev/null
+++ b/Library/Formula/gts.rb
@@ -0,0 +1,16 @@
+require 'formula'
+
+class Gts < Formula
+ url 'http://downloads.sourceforge.net/project/gts/gts/0.7.6/gts-0.7.6.tar.gz'
+ homepage 'http://gts.sourceforge.net/'
+ md5 '9f710aefd2ed9b3cc1b1216171fc5a8a'
+ depends_on 'glib'
+ depends_on 'gettext'
+
+ def install
+ system "./configure", "--disable-debug", "--disable-dependency-tracking",
+ "--prefix=#{prefix}"
+
+ system "make install"
+ end
+end