aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/synfigstudio.rb
diff options
context:
space:
mode:
authorSecond Planet2011-02-20 17:06:53 -0500
committerAdam Vandenberg2011-09-02 15:32:18 -0700
commitcd41ed67380a53d46e4cd9a9b7ad2886b04300ae (patch)
tree7fae0fc67a378a5e64e3b116dad7c9b9030910ee /Library/Formula/synfigstudio.rb
parent553bf2070701aa026b17293f2bc91f17acac550a (diff)
downloadhomebrew-cd41ed67380a53d46e4cd9a9b7ad2886b04300ae.tar.bz2
synfigstudio 0.62.02
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula/synfigstudio.rb')
-rw-r--r--Library/Formula/synfigstudio.rb22
1 files changed, 22 insertions, 0 deletions
diff --git a/Library/Formula/synfigstudio.rb b/Library/Formula/synfigstudio.rb
new file mode 100644
index 000000000..9fe3dfce3
--- /dev/null
+++ b/Library/Formula/synfigstudio.rb
@@ -0,0 +1,22 @@
+require 'formula'
+
+class Synfigstudio <Formula
+ url 'http://downloads.sourceforge.net/project/synfig/synfigstudio/0.62.02/synfigstudio-0.62.02.tar.gz'
+ homepage 'http://synfig.org'
+ md5 '4b06f813e497072f01779f554e34c315'
+
+ skip_clean :all # So modules will load
+
+ depends_on 'gettext'
+ depends_on 'libsigc++'
+ depends_on 'etl'
+ depends_on 'synfig'
+ depends_on 'gtkmm'
+
+ def install
+ system "autoreconf --install --force"
+ system "./configure", "--disable-debug", "--disable-dependency-tracking",
+ "--prefix=#{prefix}"
+ system "make install"
+ end
+end