6ca64e3343
The dynamic duo of CDDB.py and DiscID.py, along with their side-kick C module cdrommodule.so, provide an easy way for Python programs to fetch information on audio CDs from CDDB (http://www.cddb.com/) -- a very large online database of track listings and other information on audio CDs. WWW: http://cddb-py.sourceforge.net/ from Xavier Santolaria <xavier@santolaria.net>
30 lines
692 B
Makefile
30 lines
692 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2003/07/28 18:32:16 sturm Exp $
|
|
|
|
COMMENT= "CDDB audio CD track info access in Python"
|
|
|
|
DISTNAME= CDDB-1.3
|
|
PKGNAME= py-${DISTNAME:L}
|
|
CATEGORIES= audio
|
|
|
|
HOMEPAGE= http://cddb-py.sourceforge.net/
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=cddb-py/}
|
|
|
|
# avoid possible conflict with the audio/p5-cddb distfile
|
|
DIST_SUBDIR= ${PKGNAME}
|
|
|
|
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
|
|
|
|
post-install:
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/py-cddb
|
|
${INSTALL_DATA} ${WRKSRC}/README ${PREFIX}/share/doc/py-cddb
|
|
|
|
.include <bsd.port.mk>
|