mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-18 07:02:29 +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-timeat
|
|
_pkgname=timeat
|
|
pkgver=1.0.1
|
|
pkgrel=0
|
|
pkgdesc="A Python module that shows local time at given location"
|
|
url="https://bitbucket.org/tebeka/py-timeat"
|
|
arch="noarch"
|
|
license="MIT"
|
|
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="01ed6a106801f04068592025249028d4 timeat-1.0.1.tar.gz"
|
|
sha256sums="6368f21407915b9a6b6ef5c583301c96c46faa30d40ac8ebd95138235413d365 timeat-1.0.1.tar.gz"
|
|
sha512sums="27d749d4ebbf43aedf358be047c86e4cf7f9ff1987fdff8676ccbbc291fb7b747464d9da7f38af69e64fe062cf92c6ea2fd4cf7c0e46e57db0eb4e1854ac0a65 timeat-1.0.1.tar.gz"
|