mirror of
https://git.freebsd.org/ports.git
synced 2025-04-28 17:46:38 -04:00
files without much hassle. Possible use cases are: * When you want to apply an effect without having to open a GUI or start a project. * When you want to apply effects to a large number of files, or in an automated manner. * When you need a deterministic environment to debug a plugin. * You like everything to be on the command line. lv2file uses the LV2 plugin format (http://lv2plug.in/) for the effects it uses. WWW: https://github.com/jeremysalwen/lv2file PR: 221214 Submitted by: Yuri Victorovich (maintainer) Reviewed by: matthew (mentor) Approved by: matthew (mentor) Differential Revision: https://reviews.freebsd.org/D12058
12 lines
464 B
Text
12 lines
464 B
Text
--- Makefile.orig 2014-04-06 11:34:47 UTC
|
|
+++ Makefile
|
|
@@ -1,6 +1,6 @@
|
|
-CFLAGS = -O3 -Wall -Wextra --std=c99 `pkg-config --cflags argtable2 sndfile lilv-0`
|
|
-LDLIBS = `pkg-config --libs argtable2 sndfile lilv-0` -lm
|
|
-BINDIR = $(DESTDIR)/usr/bin
|
|
+CFLAGS += -Wall -Wextra --std=c99 `pkg-config --cflags argtable2 sndfile lilv-0`
|
|
+LDLIBS += `pkg-config --libs argtable2 sndfile lilv-0` -lm
|
|
+BINDIR = $(DESTDIR)/$(PREFIX)/bin
|
|
INSTALL_PROGRAM = install
|
|
|
|
all: lv2file
|