homebrew-core/Formula/lv2.rb
Tomy Hudson fd01ca91cd lv2 1.4.0
Closes Homebrew/homebrew#20139.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2013-05-31 07:00:45 -07:00

13 lines
331 B
Ruby

require 'formula'
class Lv2 < Formula
homepage 'http://lv2plug.in'
url 'http://lv2plug.in/spec/lv2-1.4.0.tar.bz2'
sha1 'df78eb0983981a510806b6765d7ad72c0204be18'
def install
system "./waf", "configure", "--prefix=#{prefix}", "--lv2dir=#{share}/lv2"
system "./waf", "build"
system "./waf", "install"
end
end