summaryrefslogtreecommitdiff
path: root/community/python2-tagpy/PKGBUILD
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2013-01-26 00:08:39 -0800
committerroot <root@rshg054.dnsready.net>2013-01-26 00:08:39 -0800
commit7d3e94229ca9849421d263542eb2c61f64a91c10 (patch)
treea64484da5988880907feb62e68952c19724a24bd /community/python2-tagpy/PKGBUILD
parentef71629a65f6e8052d66775f07b079bf08322476 (diff)
Sat Jan 26 00:08:39 PST 2013
Diffstat (limited to 'community/python2-tagpy/PKGBUILD')
-rw-r--r--community/python2-tagpy/PKGBUILD47
1 files changed, 47 insertions, 0 deletions
diff --git a/community/python2-tagpy/PKGBUILD b/community/python2-tagpy/PKGBUILD
new file mode 100644
index 000000000..160e3e143
--- /dev/null
+++ b/community/python2-tagpy/PKGBUILD
@@ -0,0 +1,47 @@
+# $Id: PKGBUILD 82869 2013-01-25 08:19:37Z andrea $
+# Contributor: Andrea Scarpino <andrea@archlinux.org>
+# Contributor: Callan Barrett <wizzomafizzo@gmail.com>
+# Contributor: Scott Horowitz <stonecrest@gmail.com>
+
+pkgname=python2-tagpy
+pkgver=0.94.8
+pkgrel=1
+pkgdesc="Python bindings for TagLib"
+arch=('i686' 'x86_64')
+url="http://pypi.python.org/pypi/tagpy"
+license=('MIT')
+depends=('python2' 'taglib' 'boost-libs')
+makedepends=('python2-distribute' 'boost')
+replaces=('tagpy')
+conflicts=('tagpy')
+source=("http://pypi.python.org/packages/source/t/tagpy/tagpy-$pkgver.tar.gz"
+ 'taglib1.7.patch')
+md5sums=('6baff63318cf90b9bc5a2497a0597802'
+ '5b47cefe5fad98a093232256779da345')
+
+build() {
+ cd tagpy-${pkgver}
+
+ patch -p1 -i "${srcdir}"/taglib1.7.patch
+
+ sed -i -e "s|#![ ]*/usr/bin/env python$|#!/usr/bin/env python2|" \
+ $(find . -name '*.py')
+
+ ./configure.py --taglib-lib-dir=/usr/lib/ \
+ --taglib-inc-dir=/usr/include/taglib/ \
+ --boost-inc-dir=/usr/include/boost/ \
+ --boost-lib-dir=/usr/lib/ \
+ --boost-python-libname=boost_python
+ python2 setup.py build
+}
+
+package(){
+ cd tagpy-${pkgver}
+ python2 setup.py install --root="${pkgdir}" --optimize=1
+ install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/$pkgname/LICENSE"
+}
+
+check(){
+ cd tagpy-${pkgver}
+ python2 setup.py test
+}