1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-29 10:18:30 +00:00
freebsd-ports/audio/lilv/Makefile
Kurt Jaeger 558589fa2c New port: audio/lilv
Lilv is a C library to make the use of LV2 plugins as simple as possible
for applications. Lilv is the successor to SLV2, rewritten to be significantly
faster and have minimal dependencies. It is stable, well-tested
software (the included test suite covers over 90% of the code) in use
by several applications.

WWW: http://drobilla.net/software/lilv/

PR:		213290
Submitted by:	Michael Beer <beerml@sigma6audio.de>
Reviewed by:	Yuri Victorovich <yuri@rawbw.com>
2017-01-10 19:48:09 +00:00

34 lines
1.0 KiB
Makefile

# Created by: Michael Beer <beerml@sigma6audio.de>
# $FreeBSD$
PORTNAME= lilv
PORTVERSION= 0.24.0
CATEGORIES= audio
MASTER_SITES= http://download.drobilla.net/
MAINTAINER= beerml@sigma6audio.de
COMMENT= Lilv makes the use of LV2 plugins as simple as possible
LICENSE= ISCL
LICENSE_FILE= ${WRKSRC}/COPYING
BUILD_DEPENDS= lv2>=1.14.0:audio/lv2
LIB_DEPENDS= libserd-0.so:devel/serd libsord-0.so:devel/sord libsratom-0.so:audio/sratom libsndfile.so:audio/libsndfile
USES= pkgconfig python:build tar:bzip2 waf
USE_LDCONFIG= yes
post-install:
@${MV} ${STAGEDIR}${PREFIX}/lib/pkgconfig/*.pc ${STAGEDIR}${PREFIX}/libdata/pkgconfig/
@${MV} ${STAGEDIR}${PREFIX}/share/man/man1 ${STAGEDIR}${PREFIX}/man/
@${RMDIR} ${STAGEDIR}${PREFIX}/share/man
@${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/liblilv-0.so.0.24.0
@${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/lilv-bench
@${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/lv2apply
@${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/lv2bench
@${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/lv2info
@${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/lv2ls
.include <bsd.port.mk>