mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-08 10:12:59 +01:00
42 lines
1.2 KiB
Plaintext
42 lines
1.2 KiB
Plaintext
# Contributor: Fabian Affolter <fabian@affolter-engineering.ch>
|
|
# Maintainer: Fabian Affolter <fabian@affolter-engineering.ch>
|
|
pkgname=py-purl
|
|
_pkgname=purl
|
|
pkgver=1.0
|
|
pkgrel=0
|
|
pkgdesc="An immutable Python URL class for easy URL-building and manipulation"
|
|
url="https://github.com/codeinthehole/purl"
|
|
arch="noarch"
|
|
license="MIT"
|
|
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="2c22f05c6edd6e7da68f35c0d8d91742 purl-1.0.tar.gz"
|
|
sha256sums="bf8ae85bb10da4d11b5495bd56229cc76b6cfc880413fef85241632000ad9423 purl-1.0.tar.gz"
|
|
sha512sums="468046083f9631a12c062264d109ef37acdbef349bbebb7f003e7dde1ff909db364bcf2d877cfc08acb58ddbd47039ed5e06f2127a843b81b354fe98315ecf40 purl-1.0.tar.gz"
|