mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-02-12 11:21:50 +01:00
42 lines
1.1 KiB
Plaintext
42 lines
1.1 KiB
Plaintext
# Contributor: Fabian Affolter <fabian@affolter-engineering.ch>
|
|
# Maintainer: Fabian Affolter <fabian@affolter-engineering.ch>
|
|
pkgname=py-turq
|
|
_pkgname=turq
|
|
pkgver=0.2.0
|
|
pkgrel=0
|
|
pkgdesc="A Mock HTTP server"
|
|
url="https://github.com/vfaronov/turq"
|
|
arch="noarch"
|
|
license="BSD"
|
|
depends="python"
|
|
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="c739aea2604898f4dff135e8bc201f83 turq-0.2.0.tar.gz"
|
|
sha256sums="645c967303d18ff54c628b23656c0df87b35e0fed8a4492c1b341eaba09118e7 turq-0.2.0.tar.gz"
|
|
sha512sums="2de69a9c34f20e0e91c2d2f28c6aea45dde121b55d4954ec84de1a56b22ce7a05c89faa5415385e6e51bafa496be313a61f73f53696ff2321f9f5e9da8747ebe turq-0.2.0.tar.gz"
|