homebrew-core/Formula/etl.rb

14 lines
374 B
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
class Etl < Formula
2011-11-27 18:16:52 +00:00
url 'http://downloads.sourceforge.net/project/synfig/ETL/0.04.14/ETL-0.04.14.tar.gz'
homepage 'http://synfig.org'
2011-11-27 18:16:52 +00:00
md5 '7cb91905cbe07af327340aeba2226c06'
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make install"
end
end