homebrew-core/Formula/etl.rb
Michael Ford fd3b8a3ab2 ETL 0.04.16
Closes Homebrew/homebrew#21667.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2013-08-05 08:51:48 -07:00

13 lines
383 B
Ruby

require 'formula'
class Etl < Formula
homepage 'http://synfig.org'
url 'http://downloads.sourceforge.net/project/synfig/ETL/0.04.16/ETL-0.04.16.tar.gz'
sha1 '1d80f0f8b16aab2f6a86b07be8a7b73da4c7f75f'
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make install"
end
end