34 lines
989 B
Bash
34 lines
989 B
Bash
# Template file for 'python-texttable'
|
|
pkgname=python-texttable
|
|
version=0.9.1
|
|
revision=1
|
|
noarch=yes
|
|
wrksrc="texttable-${version}"
|
|
build_style=python-module
|
|
hostmakedepends="python-setuptools python3-setuptools"
|
|
depends="python"
|
|
pycompile_module="texttable.py"
|
|
short_desc="Python2 module for creating simple ASCII tables"
|
|
maintainer="Sergi Alvarez <pancake@nopcode.org>"
|
|
homepage="https://github.com/foutaise/texttable/"
|
|
license="LGPL-3"
|
|
distfiles="${PYPI_SITE}/t/texttable/texttable-${version}.tar.gz"
|
|
checksum=119041773ff03596b56392532f9315cb3a3116e404fd6f36e76a7dc088d95c79
|
|
|
|
python3-texttable_package() {
|
|
noarch=yes
|
|
depends="python3"
|
|
pycompile_module="texttable.py"
|
|
replaces="python3.4-texttable>=0"
|
|
short_desc="${short_desc/Python2/Python3}"
|
|
pkg_install() {
|
|
vmove usr/lib/python3*
|
|
}
|
|
}
|
|
python3.4-texttable_package() {
|
|
noarch=yes
|
|
build_style=meta
|
|
short_desc="${short_desc/Python2/Python3.4} (transitional dummy package)"
|
|
depends="python3-texttable>=${version}_${revision}"
|
|
}
|