lv2: change plugin path to #{lib}/lv2.

see http://lv2plug.in/pages/filesystem-hierarchy-standard.html

Closes Homebrew/homebrew#47385.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
This commit is contained in:
David 2015-12-26 08:37:05 +01:00 committed by Mike McQuaid
parent 10b4f61c7a
commit 907cead808
2 changed files with 2 additions and 2 deletions

View file

@ -12,7 +12,7 @@ class Lv2 < Formula
end
def install
system "./waf", "configure", "--prefix=#{prefix}", "--lv2dir=#{share}/lv2", "--no-plugins"
system "./waf", "configure", "--prefix=#{prefix}", "--no-plugins"
system "./waf", "build"
system "./waf", "install"
end

View file

@ -8,7 +8,7 @@ class MdaLv2 < Formula
depends_on "lv2"
def install
system "./waf", "configure", "--prefix=#{prefix}", "--lv2dir=#{share}/lv2"
system "./waf", "configure", "--prefix=#{prefix}"
system "./waf"
system "./waf", "install"
end