aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorBen Swift2013-01-14 10:50:54 +1100
committerAdam Vandenberg2013-01-14 16:36:02 -0800
commit382f1036494c57ee2fb7898a9dfe49fbccb1ea51 (patch)
tree25789b267bed3c27c792f9ff148e8ab7f111e297 /Library
parentfc595c39c18bf5ebeed6be11d9d75f4097981711 (diff)
downloadhomebrew-382f1036494c57ee2fb7898a9dfe49fbccb1ea51.tar.bz2
sratom 0.4.0
http://drobilla.net/software/sratom/ Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/sratom.rb19
1 files changed, 19 insertions, 0 deletions
diff --git a/Library/Formula/sratom.rb b/Library/Formula/sratom.rb
new file mode 100644
index 000000000..2b3427ce9
--- /dev/null
+++ b/Library/Formula/sratom.rb
@@ -0,0 +1,19 @@
+require 'formula'
+
+class Sratom < Formula
+ homepage 'http://drobilla.net/software/sratom/'
+ url 'http://download.drobilla.net/sratom-0.4.0.tar.bz2'
+ sha1 '898ef54df92785a2cfe2787ff2002e0b713044fd'
+
+ depends_on 'pkg-config' => :build
+ depends_on 'lv2'
+ depends_on 'serd'
+ depends_on 'sord'
+
+ def install
+ system "./waf", "configure", "--prefix=#{prefix}"
+ system "./waf"
+ system "./waf", "install"
+ end
+
+end