homebrew-core/Formula/etl.rb

14 lines
395 B
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
class Etl < Formula
homepage 'http://synfig.org'
url 'https://downloads.sourceforge.net/project/synfig/releases/0.64.1/source/ETL-0.04.17.tar.gz'
2013-11-15 23:34:32 +00:00
sha1 '2ab2957140deaad90232533461513c5d425007bb'
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make install"
end
end