blob: bd985fa9493d3ea3ebd275b99c3952d25b7e560b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
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
|