aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorBen Swift2013-01-14 11:27:59 +1100
committerAdam Vandenberg2013-01-14 16:36:02 -0800
commitddd88b5ff12a30b89e0785731040ad2bf547d1f2 (patch)
tree53ffaedce659468f780e7d3ad08a7972f6cee958 /Library
parentedee0a1c125661ccee3956f293e48ae1a19663ca (diff)
downloadhomebrew-ddd88b5ff12a30b89e0785731040ad2bf547d1f2.tar.bz2
mda-lv2 1.0.0
http://drobilla.net/software/mda-lv2/ Closes #16232. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/mda-lv2.rb16
1 files changed, 16 insertions, 0 deletions
diff --git a/Library/Formula/mda-lv2.rb b/Library/Formula/mda-lv2.rb
new file mode 100644
index 000000000..1fc913d31
--- /dev/null
+++ b/Library/Formula/mda-lv2.rb
@@ -0,0 +1,16 @@
+require 'formula'
+
+class MdaLv2 < Formula
+ homepage 'http://drobilla.net/software/mda-lv2/'
+ url 'http://download.drobilla.net/mda-lv2-1.0.0.tar.bz2'
+ sha1 '03ad1115405bbc870b3cd10f557f326b38cbb74d'
+
+ depends_on 'pkg-config' => :build
+ depends_on 'lv2'
+
+ def install
+ system "./waf", "configure", "--prefix=#{prefix}", "--lv2dir=#{share}/lv2"
+ system "./waf"
+ system "./waf", "install"
+ end
+end