2014-09-29 17:31:59 +00:00
|
|
|
require "formula"
|
2013-01-13 23:34:36 +00:00
|
|
|
|
|
|
|
class Lv2 < Formula
|
2014-09-29 17:31:59 +00:00
|
|
|
homepage "http://lv2plug.in"
|
|
|
|
url "http://lv2plug.in/spec/lv2-1.10.0.tar.bz2"
|
|
|
|
sha1 "182f8358808719edfcad535ff9c53d3e1dbce3f4"
|
2013-01-13 23:34:36 +00:00
|
|
|
|
2014-10-22 14:41:52 +00:00
|
|
|
bottle do
|
|
|
|
cellar :any
|
|
|
|
sha1 "df2e95bc5e66e21910b24296e7abf5bf38f521ed" => :yosemite
|
|
|
|
sha1 "f61a2ea63098cbcebe6747bd855aa45c8c1cdbde" => :mavericks
|
|
|
|
sha1 "e435c12326408f004e3bcda8506a1093b8bf8d09" => :mountain_lion
|
|
|
|
end
|
|
|
|
|
2013-01-13 23:34:36 +00:00
|
|
|
def install
|
2014-09-29 17:31:59 +00:00
|
|
|
system "./waf", "configure", "--prefix=#{prefix}", "--lv2dir=#{share}/lv2", "--no-plugins"
|
2013-01-13 23:34:36 +00:00
|
|
|
system "./waf", "build"
|
|
|
|
system "./waf", "install"
|
|
|
|
end
|
|
|
|
end
|