aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorSecond Planet2011-02-20 17:01:34 -0500
committerAdam Vandenberg2011-03-11 17:01:54 -0800
commitaa654e49d98da054b4cbd21d524e5773aafb9dc3 (patch)
tree9d251255f2e6d3324ac7a21e0d6371a534061320 /Library
parent92e324c3127f69b7e6ef75377fc1456cbf948c4b (diff)
downloadhomebrew-aa654e49d98da054b4cbd21d524e5773aafb9dc3.tar.bz2
synfig 0.62.02
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/synfig.rb20
1 files changed, 20 insertions, 0 deletions
diff --git a/Library/Formula/synfig.rb b/Library/Formula/synfig.rb
new file mode 100644
index 000000000..dccbd16a3
--- /dev/null
+++ b/Library/Formula/synfig.rb
@@ -0,0 +1,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