mda-lv2 1.0.0

http://drobilla.net/software/mda-lv2/

Closes Homebrew/homebrew#16232.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
master
Ben Swift 2013-01-14 11:27:59 +11:00 committed by Adam Vandenberg
parent f1af377152
commit 25cdc60b48
1 changed files with 16 additions and 0 deletions

16
Formula/mda-lv2.rb Normal file
View File

@ -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