mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-12-31 22:32:14 +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-yurl
|
|
_pkgname=YURL
|
|
pkgver=0.12
|
|
pkgrel=0
|
|
pkgdesc="An alternative Python url manipulation library"
|
|
url="https://github.com/homm/yurl/"
|
|
arch="noarch"
|
|
license="unknown"
|
|
depends=""
|
|
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="5cec680e8f97867bb12e0029a8f73e55 YURL-0.12.tar.gz"
|
|
sha256sums="a74b284fa9fa2d8b562e5b828051d4717e0364010b0c7cec23fdd9efc6663041 YURL-0.12.tar.gz"
|
|
sha512sums="18c3777634126c68b36ae5ff76b03db64e75f65de062dc39d979c95fb0e4ac42f00d481da0dc0fa6ac4524007503a25b8e81d807b13fa8fad146fe80245c788a YURL-0.12.tar.gz"
|