diff options
author | root <root@rshg054.dnsready.net> | 2013-08-13 01:33:19 -0700 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2013-08-13 01:33:19 -0700 |
commit | 7a65a910b77ad191d69881098c47f9b0c852d92e (patch) | |
tree | 9564e611af1442f8952a8cbddb3b0ad25ed71aab /community/python2-pycdio/PKGBUILD | |
parent | 60da6abff6c9577a783d72865f11de7a585e912e (diff) |
Tue Aug 13 01:31:08 PDT 2013
Diffstat (limited to 'community/python2-pycdio/PKGBUILD')
-rw-r--r-- | community/python2-pycdio/PKGBUILD | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/community/python2-pycdio/PKGBUILD b/community/python2-pycdio/PKGBUILD new file mode 100644 index 000000000..54f608dbd --- /dev/null +++ b/community/python2-pycdio/PKGBUILD @@ -0,0 +1,23 @@ +# $Id: PKGBUILD 86447 2013-03-17 10:57:47Z fyan $ +# Maintainer: Felix Yan <felixonmars@gmail.com> +# Contributor: Alessandro Pezzoni <donbex at nerdshack dot com> + +pkgname=python2-pycdio +pkgver=0.19 +pkgrel=2 +pkgdesc="Python OO interface to libcdio (CD Input and Control library)" +arch=("i686" "x86_64") +url="http://pypi.python.org/pypi/pycdio/" +license=('GPL') +depends=('python2' 'libcdio') +makedepends=('python2-distribute' 'pkg-config' 'swig') +options=(!emptydirs) +source=("http://pypi.python.org/packages/source/p/${pkgname#python2-}/${pkgname#python2-}-${pkgver}.tar.gz") +md5sums=('a6b00666ce8d77ab80a4084a8ff1136b') + +package() { + cd "$srcdir/${pkgname#python2-}-$pkgver" + python2 setup.py install --root="$pkgdir/" --optimize=1 +} + +# vim:set ts=2 sw=2 et: |