blob: 63354d626cc5b8aece80fb3d76c5269354d5ff3c (
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.15/ETL-0.04.15.tar.gz'
sha1 'fee4f4152d57a8843163963dc587bca44c5ab0e4'
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make install"
end
end
|