32 lines
813 B
Bash
32 lines
813 B
Bash
# Template file for 'python-serpent'
|
|
pkgname=python-serpent
|
|
version=1.24
|
|
revision=1
|
|
wrksrc="${pkgname#*-}-${version}"
|
|
noarch=yes
|
|
build_style=python-module
|
|
pycompile_module="serpent.py"
|
|
hostmakedepends="python-setuptools python3-setuptools"
|
|
depends="python"
|
|
short_desc="Serialization library based on ast.literal_eval (Python2)"
|
|
maintainer="pulux <pulux@pf4sh.de>"
|
|
license="MIT"
|
|
homepage="https://pypi.org/project/serpent/"
|
|
distfiles="${PYPI_SITE}/s/serpent/serpent-${version}.tar.gz"
|
|
checksum=b6855483d95a03b6aee358363684cd38a3a670240da5bc6da4253079cb07b8df
|
|
|
|
post_install() {
|
|
head -n 4 setup.py | tail -n 3 > LICENSE
|
|
vlicense LICENSE
|
|
}
|
|
|
|
python3-serpent_package() {
|
|
noarch=yes
|
|
depends="python3"
|
|
pycompile="serpent.py"
|
|
short_desc="${short_desc/Python2/Python3}"
|
|
pkg_install() {
|
|
vmove usr/lib/python3*
|
|
}
|
|
}
|