blob: fcb887859e053bec1fb927450e2b1f6b73b5a6ce (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
require 'formula'
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'
sha1 '2ab2957140deaad90232533461513c5d425007bb'
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make install"
end
end
|