23 lines
693 B
Bash
23 lines
693 B
Bash
# Template file for 'python3-pytz'
|
|
pkgname=python3-pytz
|
|
version=2022.2.1
|
|
revision=1
|
|
wrksrc="pytz-${version}"
|
|
build_style=python3-module
|
|
hostmakedepends="python3-setuptools"
|
|
depends="python3 tzdata"
|
|
checkdepends="python3-pytest"
|
|
short_desc="Python3 timezone library"
|
|
maintainer="Andrew J. Hesford <ajh@sideband.org>"
|
|
license="MIT"
|
|
homepage="https://pythonhosted.org/pytz/"
|
|
distfiles="${PYPI_SITE}/p/pytz/pytz-${version}.tar.gz"
|
|
checksum=cea221417204f2d1a2aa03ddae3e867921971d0d76f14d87abb4414415bbdcf5
|
|
|
|
post_install() {
|
|
# use system tz database
|
|
rm -rf ${DESTDIR}/${py3_sitelib}/pytz/zoneinfo
|
|
ln -sf /usr/share/zoneinfo ${DESTDIR}/${py3_sitelib}/pytz/zoneinfo
|
|
vlicense LICENSE.txt LICENSE
|
|
}
|