blob: 19ada30a339721062bd919189d2bcd7d0b8cbf69 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
require 'formula'
class Synfig < Formula
url 'https://downloads.sourceforge.net/project/synfig/synfig/0.62.02/synfig-0.62.02.tar.gz'
homepage 'http://synfig.org'
head 'git://synfig.git.sourceforge.net/gitroot/synfig/synfig', :using => :git
md5 'e6af1aa9426cf629127d23edbd772f6d'
depends_on 'pkg-config' => :build
depends_on 'gettext'
depends_on 'etl'
depends_on 'libsigc++'
depends_on 'libxml++'
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make install"
end
end
|