homebrew-core/Formula/lv2.rb

22 lines
714 B
Ruby
Raw Normal View History

2014-09-29 17:31:59 +00:00
require "formula"
class Lv2 < Formula
desc "Portable plugin standard for audio systems"
2014-09-29 17:31:59 +00:00
homepage "http://lv2plug.in"
2015-04-20 11:31:28 +00:00
url "http://lv2plug.in/spec/lv2-1.12.0.tar.bz2"
sha1 "fc914f00d3230354145748a2a4e55df0a03bcbe2"
2014-10-22 14:41:52 +00:00
bottle do
cellar :any
2015-04-20 12:00:41 +00:00
sha256 "e682bb3d9dea26c66b139f21ab9a64e8a7ffcf283dd70223fc7fb81bf7942d5b" => :yosemite
sha256 "9dfb6260a6590324b504c649d1af839603414a6d76c390fc4a0b24671b0d45a2" => :mavericks
sha256 "cc96aedd80560fd38ce73bf5aa4e925c4836b570da37e9556131113e1666da32" => :mountain_lion
2014-10-22 14:41:52 +00:00
end
def install
2014-09-29 17:31:59 +00:00
system "./waf", "configure", "--prefix=#{prefix}", "--lv2dir=#{share}/lv2", "--no-plugins"
system "./waf", "build"
system "./waf", "install"
end
end