1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-04 01:48:54 +00:00
freebsd-ports/audio/ladspa/Makefile
Tilman Keskinoz 9c29fe16b4 Update my Emailadress.
Switch to MASTER_SITE_LOCAL

Approved by: kris (mentor)
2002-10-22 12:49:50 +00:00

40 lines
934 B
Makefile

# New ports collection Makefile for: ladspa
# Date created: 11 May 2002
# Whom: Tilman Linneweh <arved@FreeBSD.org>
#
# $FreeBSD$
PORTNAME= ladspa
PORTVERSION= 1.1
CATEGORIES= audio
MASTER_SITES= ${MASTER_SITE_LOCAL}
MASTER_SITE_SUBDIR= arved
MAINTAINER= arved@FreeBSD.org
USE_BZIP2= yes
USE_GMAKE= yes
USE_REINPLACE= yes
INSTALLS_SHLIB= yes
PROGRAM_FILES= analyseplugin applyplugin listplugins
PLUGIN_FILES= amp.so delay.so filter.so noise.so sine.so
PLUGIN_DIR?= ${PREFIX}/lib/ladspa/
post-patch:
${REINPLACE_CMD} -e 's,-ldl,,' ${WRKSRC}/src/makefile
do-build:
cd ${WRKSRC}/src; ${GMAKE} -f makefile targets
do-install:
@${INSTALL_DATA} ${WRKSRC}/src/ladspa.h ${PREFIX}/include
.for file in ${PROGRAM_FILES}
@${INSTALL_PROGRAM} ${WRKSRC}/bin/${file} ${PREFIX}/bin
.endfor
@${MKDIR} ${PLUGIN_DIR}
.for file in ${PLUGIN_FILES}
@${INSTALL_DATA} ${WRKSRC}/plugins/${file} ${PLUGIN_DIR}
.endfor
.include <bsd.port.mk>