x42 / fil4.lv2

4 Band Parametric EQ
http://x42-plugins.com/x42/x42-eq
GNU General Public License v2.0
79 stars 14 forks source link

Feature request: install destination for Fedora x86_64 #9

Closed lorenzosu closed 7 years ago

lorenzosu commented 7 years ago

Hi, On Fedora 24 x86_64 I had to manually change the Makefile with:

$(PREFIX)/lib64/lv2

Then do the make install PREFIX=/usr to have it installed in /usr/lib64/lv2 (default for Fedora x86_64)

Not sure if there's a way to support this directly?

Thanks.

x42 commented 7 years ago

Please see http://lv2plug.in/pages/filesystem-hierarchy-standard.html and nudge fedora (LV2 PATH is not arch dependent).

if you really need to, you can run make LV2DIR=/your/nonstandard/lv2/path (there's no need to change the makefile, all the variables can be overridden with either environment variables or make command arguments).

lorenzosu commented 7 years ago

Thanks for the info. Lorenzo.

x42 commented 7 years ago

Oops. I meant make install LV2DIR=/usr/lib64/lv2 PREFIX=/usr/ install (there's no configure step, parameters need to be given for the install step)

That' puts the the jack binary in /usr/bin/ and the LV2 plugin in /usr/lib64/lv2

The makefile follows the established gnu/make variables (BINDIR, PREFIX, DESTDIR, ...) in case you need to further customize things.