homebrew-core/Formula/synfig.rb
Adam Vandenberg bb209d8bee synfig 0.63.2
* Also added missing ImageMagick dependency
2011-11-27 11:10:20 -08:00

23 lines
635 B
Ruby

require 'formula'
class Synfig < Formula
url 'https://downloads.sourceforge.net/project/synfig/synfig/0.63.02/synfig-0.63.02.tar.gz'
homepage 'http://synfig.org'
md5 '4286d5e1887275107d760d1b678aec24'
head 'git://synfig.git.sourceforge.net/gitroot/synfig/synfig', :using => :git
depends_on 'pkg-config' => :build
depends_on 'gettext'
depends_on 'etl'
depends_on 'libsigc++'
depends_on 'libxml++'
depends_on 'imagemagick'
def install
ENV.libpng
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make install"
end
end