homebrew-core/Formula/gts.rb
Matt Stanton d7a0ab6889 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>
2011-04-14 08:53:25 -07:00

16 lines
421 B
Ruby

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