aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorSecond Planet2011-02-12 15:39:02 -0500
committerAdam Vandenberg2011-03-11 16:54:04 -0800
commiteb304e9d138768a57feae99b414cfd5da6192825 (patch)
tree7a99e2f5f60cf4eaf0ace8e06879381c32f8eb38 /Library/Formula
parent9b26f4e6e6e5dc55b1021f1e413db1b3ef94fb7e (diff)
downloadhomebrew-eb304e9d138768a57feae99b414cfd5da6192825.tar.bz2
etl 0.04.13
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/etl.rb13
1 files changed, 13 insertions, 0 deletions
diff --git a/Library/Formula/etl.rb b/Library/Formula/etl.rb
new file mode 100644
index 000000000..646573aaa
--- /dev/null
+++ b/Library/Formula/etl.rb
@@ -0,0 +1,13 @@
+require 'formula'
+
+class Etl <Formula
+ url 'https://downloads.sourceforge.net/project/synfig/ETL/0.04.13/ETL-0.04.13.tar.gz'
+ homepage 'http://synfig.org'
+ md5 'd52253adeb219d2fa554cbd744dfff29'
+
+ def install
+ system "./configure", "--disable-debug", "--disable-dependency-tracking",
+ "--prefix=#{prefix}"
+ system "make install"
+ end
+end