fd3b8a3ab2
Closes Homebrew/homebrew#21667. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
13 lines
383 B
Ruby
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
|