diff options
author | Nicola Vitale <nivit@FreeBSD.org> | 2007-02-15 22:50:36 +0000 |
---|---|---|
committer | Nicola Vitale <nivit@FreeBSD.org> | 2007-02-15 22:50:36 +0000 |
commit | deac9653c4e9eabb0bbbd0e519a6cd4f27935afd (patch) | |
tree | 4a561c4af79a30c7b56d0408e7d04fcb9e5a3e14 /audio/bmp-musepack/Makefile | |
parent | 88ecb4b9589e9352017afc958bab4e63a50cf62a (diff) |
Notes
Diffstat (limited to 'audio/bmp-musepack/Makefile')
-rw-r--r-- | audio/bmp-musepack/Makefile | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/audio/bmp-musepack/Makefile b/audio/bmp-musepack/Makefile new file mode 100644 index 000000000000..c91ae62639c6 --- /dev/null +++ b/audio/bmp-musepack/Makefile @@ -0,0 +1,36 @@ +# New ports collection makefile for: bmp-musepack +# Date Created: 12 February 2007 +# Whom: Zhen REN <bg1tpt@gmail.com> +# +# $FreeBSD$ + +PORTNAME= musepack +PORTVERSION= 1.2 +CATEGORIES= audio +MASTER_SITES= http://files.musepack.net/linux/plugins/ +PKGNAMEPREFIX= bmp- +DISTNAME= ${PKGNAMEPREFIX}${PORTNAME}-${PORTVERSION} + +MAINTAINER= bg1tpt@gmail.com +COMMENT= Musepack decoder for beep-media-player + +LIB_DEPENDS= beep.2:${PORTSDIR}/multimedia/beep-media-player \ + mpcdec:${PORTSDIR}/audio/libmpcdec \ + tag:${PORTSDIR}/audio/taglib + +USE_X_PREFIX= yes +USE_BZIP2= yes +USE_GMAKE= yes +CPPFLAGS+= "-I${LOCALBASE}/include" +GNU_CONFIGURE= yes +CONFIGURE_ENV+= CPPFLAGS="${CPPFLAGS}" +USE_AUTOTOOLS= autoconf:259 libtool:15 +PLUGDIR= lib/bmp/Input +PLUGFILE= libbmp-mpc.so +PLIST_FILES= ${PLUGDIR}/${PLUGFILE} + +do-install: + ${MKDIR} ${PREFIX}/${PLUGDIR} + ${INSTALL_PROGRAM} ${WRKSRC}/src/.libs/libmpc.so ${PREFIX}/${PLUGDIR}/${PLUGFILE} + +.include <bsd.port.mk> |