homebrew-core/Formula/gts.rb

21 lines
488 B
Ruby
Raw Normal View History

require 'formula'
class Gts < Formula
homepage 'http://gts.sourceforge.net/'
2012-02-14 04:51:39 +00:00
url 'http://downloads.sourceforge.net/project/gts/gts/0.7.6/gts-0.7.6.tar.gz'
md5 '9f710aefd2ed9b3cc1b1216171fc5a8a'
2012-02-14 04:51:39 +00:00
option :universal
depends_on 'gettext'
2012-02-14 04:51:39 +00:00
depends_on 'glib'
def install
ENV.universal_binary if build.universal?
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make install"
end
end