53 lines
1.6 KiB
Plaintext
53 lines
1.6 KiB
Plaintext
# Template file for 'python-docutils'
|
|
pkgname=python-docutils
|
|
version=0.11
|
|
revision=2
|
|
wrksrc="docutils-${version}"
|
|
build_style=python-module
|
|
hostmakedepends="python python3.4"
|
|
makedepends="python python3.4"
|
|
depends="python>=2.7"
|
|
noarch="yes"
|
|
python_versions="2.7 3.4"
|
|
pycompile_module="docutils"
|
|
short_desc="Text processing system to convert to various formats (Python2)"
|
|
maintainer="Alessio Sergi <al3hex@gmail.com>"
|
|
homepage="http://docutils.sourceforge.net"
|
|
license="BSD-2-Clause, GPL-3, PSF, Public Domain"
|
|
distfiles="${SOURCEFORGE_SITE}/docutils/docutils-${version}.tar.gz"
|
|
checksum=9af4166adf364447289c5c697bb83c52f1d6f57e77849abcccd6a4a18a5e7ec9
|
|
|
|
pre_install() {
|
|
# fix name conflict and remove .py suffix
|
|
for file in 2html 2latex 2man 2odt 2odt_prepstyles 2pseudoxml 2s5 2xetex 2xml pep2html; do
|
|
mv build-2.7/scripts-2.7/rst${file}{.py,}
|
|
mv build-3.4/scripts-3.4/rst${file}{.py,3}
|
|
done
|
|
}
|
|
|
|
post_install() {
|
|
# remove old files
|
|
for file in 2html 2latex 2man 2odt 2odt_prepstyles 2pseudoxml 2s5 2xetex 2xml pep2html; do
|
|
rm -f ${DESTDIR}/usr/bin/rst${file}.py
|
|
done
|
|
|
|
# install licenses
|
|
vinstall licenses/BSD-2-Clause.txt 644 usr/share/licenses/${pkgname}
|
|
vinstall licenses/python-2-1-1.txt 644 usr/share/licenses/${pkgname}
|
|
}
|
|
|
|
python3.4-docutils_package() {
|
|
noarch="yes"
|
|
depends="python3.4"
|
|
pycompile_version="3.4"
|
|
pycompile_module="docutils"
|
|
short_desc="${short_desc/Python2/Python3.4}"
|
|
pkg_install() {
|
|
vmove /usr/bin/*3
|
|
vmove /usr/lib/python3.4
|
|
# install licenses
|
|
vinstall ${wrksrc}/licenses/BSD-2-Clause.txt 644 usr/share/licenses/${pkgname}
|
|
vinstall ${wrksrc}/licenses/python-2-1-1.txt 644 usr/share/licenses/${pkgname}
|
|
}
|
|
}
|