svn commit: r312263 - in head/audio: . py-pyacoustid
Martin Wilke
miwi at FreeBSD.org
Fri Feb 15 02:47:48 UTC 2013
Author: miwi
Date: Fri Feb 15 02:47:46 2013
New Revision: 312263
URL: http://svnweb.freebsd.org/changeset/ports/312263
Log:
Bindings for Chromaprint acoustic fingerprinting and the Acoustid API
WWW: https://github.com/sampsyo/pyacoustid
PR: ports/176110
Submitted by: Mark Felder <feld at feld.me>
Added:
head/audio/py-pyacoustid/
head/audio/py-pyacoustid/Makefile (contents, props changed)
head/audio/py-pyacoustid/distinfo (contents, props changed)
head/audio/py-pyacoustid/pkg-descr (contents, props changed)
Modified:
head/audio/Makefile
Modified: head/audio/Makefile
==============================================================================
--- head/audio/Makefile Fri Feb 15 02:14:18 2013 (r312262)
+++ head/audio/Makefile Fri Feb 15 02:47:46 2013 (r312263)
@@ -610,6 +610,7 @@
SUBDIR += pure-audio
SUBDIR += py-ao
SUBDIR += py-apetag
+ SUBDIR += py-pyacoustid
SUBDIR += py-pyaudio
SUBDIR += py-cddb
SUBDIR += py-eyed3
Added: head/audio/py-pyacoustid/Makefile
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/audio/py-pyacoustid/Makefile Fri Feb 15 02:47:46 2013 (r312263)
@@ -0,0 +1,31 @@
+# Created by: Mark Felder <feld at feld.me>
+# $FreeBSD$
+
+PORTNAME= pyacoustid
+PORTVERSION= 0.7
+CATEGORIES= audio python
+MASTER_SITES= CHEESESHOP
+PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER= feld at feld.me
+COMMENT= Bindings for Chromaprint acoustic fingerprinting and the Acoustid API
+
+LICENSE= MIT
+
+BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}setuptools>=0:${PORTSDIR}/devel/py-setuptools
+LIB_DEPENDS= chromaprint:${PORTSDIR}/audio/chromaprint
+
+USE_PYTHON= yes
+PLIST_FILES= %%PYTHON_SITELIBDIR%%/acoustid.py \
+ %%PYTHON_SITELIBDIR%%/chromaprint.py
+
+.include <bsd.port.pre.mk>
+
+do-build:
+ @(cd ${BUILD_WRKSRC}; ${SETENV} ${MAKE_ENV} ${PYTHON_CMD} \
+ ${PYSETUP} build)
+
+do-install:
+ cd ${WRKSRC}/build/lib && ${COPYTREE_SHARE} \* ${PYTHONPREFIX_SITELIBDIR}/
+
+.include <bsd.port.post.mk>
Added: head/audio/py-pyacoustid/distinfo
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/audio/py-pyacoustid/distinfo Fri Feb 15 02:47:46 2013 (r312263)
@@ -0,0 +1,2 @@
+SHA256 (pyacoustid-0.7.tar.gz) = ad1d15773a776d7880350062131f055e260f4c39135cfcc1cfbfdbcbfc08f2ef
+SIZE (pyacoustid-0.7.tar.gz) = 10173
Added: head/audio/py-pyacoustid/pkg-descr
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/audio/py-pyacoustid/pkg-descr Fri Feb 15 02:47:46 2013 (r312263)
@@ -0,0 +1,3 @@
+Bindings for Chromaprint acoustic fingerprinting and the Acoustid API
+
+WWW: https://github.com/sampsyo/pyacoustid
More information about the svn-ports-head
mailing list