From 8429da6a43ae8f503dabc6c585b10540c25c0017 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Wed, 25 Sep 2013 06:29:09 +0000 Subject: testing/httpie: new aport A CLI, cURL-like tool https://github.com/jkbr/httpie --- testing/httpie/APKBUILD | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 testing/httpie/APKBUILD (limited to 'testing/httpie') diff --git a/testing/httpie/APKBUILD b/testing/httpie/APKBUILD new file mode 100644 index 000000000..6665ae7cb --- /dev/null +++ b/testing/httpie/APKBUILD @@ -0,0 +1,40 @@ +# Contributor: Fabian Affolter +# Maintainer: Fabian Affolter +pkgname=httpie +pkgver=0.7.0 +pkgrel=0 +pkgdesc="A CLI, cURL-like tool" +url="https://github.com/jkbr/httpie" +arch="noarch" +license="BSD" +depends="python py-requests py-pygments" +depends_dev="" +makedepends="python-dev py-setuptools" +install="" +subpackages="" +source="http://pypi.python.org/packages/source/${pkgname:0:1}/$pkgname/$pkgname-$pkgver.tar.gz" + +_builddir="$srcdir"/$pkgname-$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="1636837c31694ef4d57b1580636b7892 httpie-0.7.0.tar.gz" +sha256sums="9f291ae53f0879a4bf031ba94fc908c05f4bc0f3d0330427e15eb3d0b2264789 httpie-0.7.0.tar.gz" +sha512sums="1f1f602513b533cf4d2904cf82f4b9831285c71d2ec1f356c2fd090fd04e6f92aa1755b6b7880fd964067b6772fbb43d2ed1b30a357711593296eefbf27fdbdf httpie-0.7.0.tar.gz" -- cgit v1.2.3