diff options
| author | Matt Stanton | 2011-04-12 10:08:59 -0400 |
|---|---|---|
| committer | Adam Vandenberg | 2011-04-14 08:53:25 -0700 |
| commit | fd008347886b1832ce996a22ea2484b6ffb93ad5 (patch) | |
| tree | d9760e0fbae53916845b785a5c8ffed73168333e /Library/Formula | |
| parent | 2b1b4e124d02dcd76c8fc2d14107073d8135a2f2 (diff) | |
| download | homebrew-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/Formula')
| -rw-r--r-- | Library/Formula/gts.rb | 16 |
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 |
