d3ac8ae93a
A Python interface to XMMS consisting of all the xmms_remote_* functions from libxmms plus some higher-level functions. This should provide anything needed to control XMMS from an external program. WWW: http://www.via.ecp.fr/~flo/index.en.html#PyXMMS_and_PyXMMS-remote from Xavier Santolaria <xavier@santolaria.net>
33 lines
786 B
Makefile
33 lines
786 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2003/07/28 18:16:15 sturm Exp $
|
|
|
|
COMMENT= "Python interface to XMMS"
|
|
|
|
DISTNAME= pyxmms-1.06
|
|
PKGNAME= ${DISTNAME:S/py/py-/}
|
|
CATEGORIES= audio
|
|
|
|
HOMEPAGE= http://www.via.ecp.fr/~flo/index.en.html\#PyXMMS_and_PyXMMS-remote
|
|
MASTER_SITES= http://www.via.ecp.fr/~flo/2002/PyXMMS/dist/
|
|
|
|
MAINTAINER= Xavier Santolaria <xavier@santolaria.net>
|
|
|
|
# GPL
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
MODULES= python
|
|
|
|
LIB_DEPENDS= xmms.3::audio/xmms
|
|
|
|
MODPY_DISTUTILS_BUILD= build_ext
|
|
MODPY_DISTUTILS_BUILDARGS= -I${LOCALBASE}/include \
|
|
-L${LOCALBASE}/lib
|
|
|
|
post-install:
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/py-xmms
|
|
${INSTALL_DATA} ${WRKSRC}/README ${PREFIX}/share/doc/py-xmms
|
|
|
|
.include <bsd.port.mk>
|