diff options
author | Nathan Harris <nharris@eoimaging.com> | 2010-02-03 19:05:10 (GMT) |
---|---|---|
committer | Nathan Harris <nharris@eoimaging.com> | 2010-02-03 19:05:10 (GMT) |
commit | 9decbea82589282cf03a326b04b5b6ba2c6ed7a3 (patch) | |
tree | 8b3e33bd643a6118dcb475336f778dcf221002b9 /abs/core-testing | |
parent | 6903b9dbb146b45e23fd085e056e396157253de7 (diff) | |
download | linhes_pkgbuild-9decbea82589282cf03a326b04b5b6ba2c6ed7a3.zip linhes_pkgbuild-9decbea82589282cf03a326b04b5b6ba2c6ed7a3.tar.gz linhes_pkgbuild-9decbea82589282cf03a326b04b5b6ba2c6ed7a3.tar.bz2 |
python-pycurl: added for mythnetvision support
Diffstat (limited to 'abs/core-testing')
-rw-r--r-- | abs/core-testing/python-pycurl/PKGBUILD | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/abs/core-testing/python-pycurl/PKGBUILD b/abs/core-testing/python-pycurl/PKGBUILD new file mode 100644 index 0000000..3d17877 --- /dev/null +++ b/abs/core-testing/python-pycurl/PKGBUILD @@ -0,0 +1,20 @@ +# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $ +# Maintainer: Angel 'angvp' Velasquez <angvp[at]archlinux.com.ve> +# Contributor: kontrast <kontr4st@gmail.com> +pkgname=python-pycurl +pkgver=7.19.0 +pkgrel=3 +pkgdesc="A Python interface to libcurl" +arch=('i686' 'x86_64') +url="http://pycurl.sourceforge.net" +license=('GPL') +depends=('python' 'curl>=7.19.0') +replaces=('pycurl') +provides=('pycurl') +source=(http://pycurl.sourceforge.net/download/pycurl-$pkgver.tar.gz) +md5sums=('919d58fe37e69fe87ce4534d8b6a1c7b') + +build() { + cd $srcdir/pycurl-$pkgver + python setup.py install --curl-config=/usr/bin/curl-config --prefix $pkgdir/usr || return 1 +} |