25 lines
716 B
Bash
25 lines
716 B
Bash
# Template file for 'python3-frozendict'
|
|
pkgname=python3-frozendict
|
|
version=2.3.4
|
|
revision=2
|
|
build_style=python3-module
|
|
make_check_args="-k not(test_c_extension)"
|
|
hostmakedepends="python3-setuptools"
|
|
makedepends="python3-devel"
|
|
depends="python3"
|
|
checkdepends="python3-pytest"
|
|
short_desc="Immutable mapping for Python3"
|
|
maintainer="Joel Beckmeyer <joel@beckmeyer.us>"
|
|
license="LGPL-3.0-only"
|
|
homepage="https://github.com/Marco-Sulla/python-frozendict"
|
|
distfiles="${PYPI_SITE}/f/frozendict/frozendict-${version}.tar.gz"
|
|
checksum=15b4b18346259392b0d27598f240e9390fafbff882137a9c48a1e0104fb17f78
|
|
|
|
do_build() {
|
|
python3 setup.py py build
|
|
}
|
|
|
|
do_install() {
|
|
python3 setup.py py install --prefix=/usr --root="${DESTDIR}"
|
|
}
|