1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-07 06:40:06 +00:00
freebsd-ports/audio/lv2file/Makefile
Richard Gallamore d9176b4859 lv2file is a simple program which you can use to apply effects to your audio
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
2017-08-17 21:53:30 +00:00

33 lines
803 B
Makefile

# Created by: Yuri Victorovich <yuri@rawbw.com>
# $FreeBSD$
PORTNAME= lv2file
DISTVERSION= 0.82-1-19
DISTVERSIONSUFFIX= -gaed7c77
CATEGORIES= audio
MAINTAINER= yuri@rawbw.com
COMMENT= Simple program that apples LV2 effects to audio files
LICENSE= GPLv3
LICENSE_FILE= ${WRKSRC}/LICENSE
BUILD_DEPENDS= lv2>0:audio/lv2
LIB_DEPENDS= libargtable2.so:devel/argtable \
libserd-0.so:devel/serd \
libsord-0.so:devel/sord \
liblilv-0.so:audio/lilv \
libsndfile.so:audio/libsndfile \
libsratom-0.so:audio/sratom
USES= gmake localbase pkgconfig
USE_GITHUB= yes
GH_ACCOUNT= jeremysalwen
PLIST_FILES= bin/lv2file man/man1/lv2file.1.gz
post-install:
${INSTALL_MAN} ${WRKSRC}/debian/lv2file.1 ${STAGEDIR}${MAN1PREFIX}/man/man1
@${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/lv2file
.include <bsd.port.mk>