2013-01-13 23:34:36 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Lv2 < Formula
|
|
|
|
homepage 'http://lv2plug.in'
|
2013-05-29 18:49:07 +00:00
|
|
|
url 'http://lv2plug.in/spec/lv2-1.4.0.tar.bz2'
|
|
|
|
sha1 'df78eb0983981a510806b6765d7ad72c0204be18'
|
2013-01-13 23:34:36 +00:00
|
|
|
|
|
|
|
def install
|
|
|
|
system "./waf", "configure", "--prefix=#{prefix}", "--lv2dir=#{share}/lv2"
|
|
|
|
system "./waf", "build"
|
|
|
|
system "./waf", "install"
|
|
|
|
end
|
|
|
|
end
|