homebrew-core/Formula/mda-lv2.rb
BrewTestBot 95884bae22 Formula files style updates.
Closes Homebrew/homebrew#42407.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2015-08-03 14:21:42 +01:00

15 lines
455 B
Ruby

class MdaLv2 < Formula
desc "LV2 port of the MDA plugins"
homepage "http://drobilla.net/software/mda-lv2/"
url "http://download.drobilla.net/mda-lv2-1.2.2.tar.bz2"
sha256 "a476c31ed9f8b009ebacc32a02d06ba9584c0d0d03f03dd62b1354d10a030442"
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