d7a0ab6889
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>
16 lines
421 B
Ruby
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
|