9c0eaab46d
According to the build instructions, autoreconf is only necessary when building from git, and not the release tarballs. Noticed when rebuilding against the updated gnome-mm bindings. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
22 lines
580 B
Ruby
22 lines
580 B
Ruby
require 'formula'
|
|
|
|
class Synfigstudio < Formula
|
|
homepage 'http://synfig.org'
|
|
url 'http://downloads.sourceforge.net/project/synfig/synfigstudio/0.63.03/synfigstudio-0.63.03.tar.gz'
|
|
md5 'a166ff4917b0e058cae96e51aa273080'
|
|
|
|
skip_clean :all # So modules will load
|
|
|
|
depends_on 'gettext'
|
|
depends_on 'libsigc++'
|
|
depends_on 'gtkmm'
|
|
depends_on 'etl'
|
|
depends_on 'synfig'
|
|
|
|
def install
|
|
system "./configure", "--disable-debug",
|
|
"--disable-dependency-tracking",
|
|
"--prefix=#{prefix}"
|
|
system "make install"
|
|
end
|
|
end
|