mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-28 05:29:48 +00:00
c661a65117
This Python module lets you load and decode Musepack (MPC/MP+ files). Its API has been chosen to mostly match pyvorbis and pymad. It also includes a module to read and write APEv2 metadata tags. WWW: http://sacredchao.net/~piman/software/python.shtml PR: 109070 Submitted by: Zhen REN
26 lines
647 B
Makefile
26 lines
647 B
Makefile
# New ports collection makefile for: py-musepack
|
|
# Date created: 12 February 2007
|
|
# Whom: Zhen REN <bg1tpt@gmail.com>
|
|
#
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= musepack
|
|
PORTVERSION= 0.4
|
|
CATEGORIES= audio python
|
|
MASTER_SITES= http://www.sacredchao.net/~piman/software/
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
DISTNAME= py${PORTNAME}-${PORTVERSION}
|
|
|
|
MAINTAINER= bg1tpt@gmail.com
|
|
COMMENT= Python module that provides the Musepack decoding interface
|
|
|
|
LIB_DEPENDS= mpcdec:${PORTSDIR}/audio/libmpcdec
|
|
|
|
USE_PYTHON= yes
|
|
USE_PYDISTUTILS= yes
|
|
USE_PYTHON_PREFIX= yes
|
|
MAKE_ENV+= CPPFLAGS="-I${LOCALBASE}/include" \
|
|
LDFLAGS="-L${LOCALBASE}/lib"
|
|
|
|
.include <bsd.port.mk>
|