homebrew-core/Formula/lv2.rb
Ben Swift 25ae7307e1 lv2 1.2.0
http://lv2plug.in/

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2013-01-14 16:36:02 -08:00

13 lines
331 B
Ruby

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