From 103e83f6a967f4e39553f15d4ff947de877f877d Mon Sep 17 00:00:00 2001 From: Natanael Copa Date: Wed, 23 Nov 2011 07:51:46 +0000 Subject: testing/py-curl: new aport A Python interface to libcurl http://pycurl.sourceforge.net/ --- testing/py-curl/APKBUILD | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 testing/py-curl/APKBUILD diff --git a/testing/py-curl/APKBUILD b/testing/py-curl/APKBUILD new file mode 100644 index 0000000000..3100eee0d2 --- /dev/null +++ b/testing/py-curl/APKBUILD @@ -0,0 +1,38 @@ +# Contributor: Natanael Copa +# Maintainer: Natanael Copa +pkgname=py-curl +pkgver=7.19.0 +pkgrel=0 +pkgdesc="A Python interface to libcurl" +url="http://pycurl.sourceforge.net/" +arch="all" +license="LGPLv2+ or MIT" +depends="python" +depends_dev="" +makedepends="curl-dev python-dev" +install="" +subpackages="$pkgname-doc" +source="http://pycurl.sourceforge.net/download/pycurl-$pkgver.tar.gz" + +_builddir="$srcdir"/pycurl-$pkgver +prepare() { + local i + cd "$_builddir" + for i in $source; do + case $i in + *.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;; + esac + done +} + +build() { + cd "$_builddir" + python setup.py build || return 1 +} + +package() { + cd "$_builddir" + python setup.py install --prefix=/usr --root="$pkgdir" || return 1 +} + +md5sums="919d58fe37e69fe87ce4534d8b6a1c7b pycurl-7.19.0.tar.gz" -- cgit v1.2.3