mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-24 19:55:26 +03:00
47 lines
1.3 KiB
Text
47 lines
1.3 KiB
Text
# Contributor: Fabian Affolter <fabian@affolter-engineering.ch>
|
|
# Maintainer: Fabian Affolter <fabian@affolter-engineering.ch>
|
|
pkgname=py-stdnum
|
|
_pkgname=python-stdnum
|
|
pkgver=1.5
|
|
pkgrel=1
|
|
pkgdesc="A Python module to handle standardized numbers and codes"
|
|
url="http://arthurdejong.org/python-stdnum/"
|
|
arch="noarch"
|
|
license="LGPL2+"
|
|
makedepends="python2-dev py-setuptools python3-dev"
|
|
subpackages="py2-${pkgname#py-}:_py2 py3-${pkgname#py-}:_py3"
|
|
source="https://arthurdejong.org/python-stdnum/$_pkgname-$pkgver.tar.gz"
|
|
builddir="$srcdir"/$_pkgname-$pkgver
|
|
|
|
build() {
|
|
cd "$builddir"
|
|
python2 setup.py build || return 1
|
|
python3 setup.py build || return 1
|
|
}
|
|
|
|
package() {
|
|
mkdir -p "$pkgdir"
|
|
}
|
|
|
|
_py2() {
|
|
replaces="$pkgname"
|
|
_py python2
|
|
}
|
|
|
|
_py3() {
|
|
_py python3
|
|
}
|
|
|
|
_py() {
|
|
local python="$1"
|
|
pkgdesc="$pkgdesc (for $python)"
|
|
depends="$python"
|
|
install_if="$pkgname=$pkgver-r$pkgrel $python"
|
|
|
|
cd "$builddir"
|
|
$python setup.py install --prefix=/usr --root="$subpkgdir"
|
|
}
|
|
|
|
md5sums="a54bbfe0b3029f1a35cb3819e5de88e1 python-stdnum-1.5.tar.gz"
|
|
sha256sums="10fe3db303aec532057484668ca9a4f421c2e5b3b1caee670b26b047bcbc737e python-stdnum-1.5.tar.gz"
|
|
sha512sums="8d6394d7039fc5a2e3785eb95ef1793038ae75443224fc5af7f1cae2cb575c2f4e5451bd9668304ba95d3ee3f87dc0103ccf6c35837220f9729cbe1a3e13f656 python-stdnum-1.5.tar.gz"
|