31 lines
741 B
Bash
31 lines
741 B
Bash
# Template file for 'python-toml'
|
|
pkgname=python-toml
|
|
version=0.9.4
|
|
revision=1
|
|
noarch=yes
|
|
wrksrc="toml-${version}"
|
|
build_style=python-module
|
|
pycompile_module="toml.py"
|
|
hostmakedepends="python-setuptools python3-setuptools"
|
|
depends="python"
|
|
short_desc="Python2 library for TOML"
|
|
maintainer="AcidBear <jake.slazenger@yandex.com>"
|
|
license="MIT"
|
|
homepage="https://github.com/uiri/toml"
|
|
distfiles="${PYPI_SITE}/t/toml/toml-${version}.tar.gz"
|
|
checksum=8e86bd6ce8cc11b9620cb637466453d94f5d57ad86f17e98a98d1f73e3baab2d
|
|
|
|
pkg_install() {
|
|
vlicense LICENSE
|
|
}
|
|
|
|
python3-toml_package() {
|
|
noarch=yes
|
|
depends="python3"
|
|
pycompile_module="toml.py"
|
|
short_desc=${short_desc/Python2/Python3}
|
|
pkg_install() {
|
|
vmove usr/lib/python3*
|
|
vlicense LICENSE
|
|
}
|
|
}
|