mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-04-22 06:02:18 +02: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-utc
|
|
_pkgname=utc
|
|
pkgver=0.0.1
|
|
pkgrel=0
|
|
pkgdesc="A tiny library for working with UTC time"
|
|
url="http://bits.btubbs.com/utc"
|
|
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="82a6c960d6acd6171b90565d4401c0c0 utc-0.0.1.tar.gz"
|
|
sha256sums="65ab9962037c38d13e5035433062b50416df083297e6a34258fb924a242020ee utc-0.0.1.tar.gz"
|
|
sha512sums="d37acf51c47d074d629f31b65c8e647e4951472f881a5cb35fe10719d20e9fde3bf6e3440ea2bcab52a453fb6d32749407741f3377049d26c496df042965025a utc-0.0.1.tar.gz"
|