mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-05 13:27:09 +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.2
|
|
pkgrel=0
|
|
pkgdesc="A tiny library for working with UTC time"
|
|
url="http://bits.btubbs.com/utc"
|
|
arch="noarch"
|
|
license="BSD"
|
|
depends="python2"
|
|
depends_dev=""
|
|
makedepends="python2-dev py-setuptools"
|
|
install=""
|
|
subpackages=""
|
|
source="https://files.pythonhosted.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"
|
|
python2 setup.py build || return 1
|
|
}
|
|
|
|
package() {
|
|
cd "$_builddir"
|
|
python2 setup.py install --prefix=/usr --root="$pkgdir" || return 1
|
|
}
|
|
|
|
md5sums="c85fd5afc558502bc30ea918c3543089 utc-0.0.2.tar.gz"
|
|
sha256sums="397f1a87d2871d1e1a1879fdbac6d6f5bf7f89feeb0efca45e5ad40cf213a1d1 utc-0.0.2.tar.gz"
|
|
sha512sums="c3019a42fb99deeedcb228e024ec3d2e783c3fbbb1919fc02e706e729df646d4e569ed5050b1fb62a53507a52cb908bc4a40b19fa707f55d05098854eaacdf7b utc-0.0.2.tar.gz"
|