diff options
author | Fabian Affolter <fabian@affolter-engineering.ch> | 2013-09-25 06:29:09 +0000 |
---|---|---|
committer | Fabian Affolter <fabian@affolter-engineering.ch> | 2013-09-29 14:07:38 +0000 |
commit | 8429da6a43ae8f503dabc6c585b10540c25c0017 (patch) | |
tree | 6a936994277177539d4322e88d0baeb1ca06b383 /testing/httpie/APKBUILD | |
parent | 9fc4029ba27ce13e3a033ff83d91b7c223cced54 (diff) | |
download | aports-8429da6a43ae8f503dabc6c585b10540c25c0017.tar.bz2 aports-8429da6a43ae8f503dabc6c585b10540c25c0017.tar.xz |
testing/httpie: new aport
A CLI, cURL-like tool
https://github.com/jkbr/httpie
Diffstat (limited to 'testing/httpie/APKBUILD')
-rw-r--r-- | testing/httpie/APKBUILD | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/testing/httpie/APKBUILD b/testing/httpie/APKBUILD new file mode 100644 index 0000000000..6665ae7cb6 --- /dev/null +++ b/testing/httpie/APKBUILD @@ -0,0 +1,40 @@ +# Contributor: Fabian Affolter <fabian@affolter-engineering.ch> +# Maintainer: Fabian Affolter <fabian@affolter-engineering.ch> +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" |