This module allows one to read and manipulate so-called ID3 informational tags on MP3 files through an object-oriented Python interface. WWW: http://id3-py.sourceforge.net/ from Xavier Santolaria <xavier@santolaria.net>
30 lines
682 B
Makefile
30 lines
682 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2003/10/11 12:41:48 sturm Exp $
|
|
|
|
COMMENT= "read and manipulate ID3 tags on MP3 files with Python"
|
|
|
|
VERSION= 1.2
|
|
DISTNAME= id3-py_${VERSION}
|
|
PKGNAME= py-id3-${VERSION}
|
|
CATEGORIES= audio
|
|
|
|
HOMEPAGE= http://id3-py.sourceforge.net/
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=id3-py/}
|
|
|
|
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
|
|
|
|
WRKSRC= ${WRKDIR}/${DISTNAME:S/py_/py-/}
|
|
|
|
post-install:
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/py-id3
|
|
${INSTALL_DATA} ${WRKSRC}/README ${PREFIX}/share/doc/py-id3
|
|
|
|
.include <bsd.port.mk>
|