void-packages/srcpkgs/python-Django/template
2018-05-20 19:45:31 +02:00

35 lines
1,000 B
Bash

# Template file for 'python-Django'
pkgname=python-Django
version=1.11.13
revision=1
noarch=yes
wrksrc="Django-${version}"
build_style=python-module
pycompile_module="django"
hostmakedepends="python-setuptools python3-setuptools"
depends="python-pytz python-setuptools"
short_desc="High-level Python2 Web framework"
maintainer="Eivind Uggedal <eivind@uggedal.com>"
license="BSD-3-Clause"
homepage="https://www.djangoproject.com/"
distfiles="${PYPI_SITE}/D/Django/Django-${version}.tar.gz"
checksum=46adfe8e0abe4d1f026c1086889970b611aec492784fbdfbdaabc2457360a4a5
alternatives="django:django-admin:/usr/bin/django-admin2"
post_install() {
vlicense LICENSE
rm -f ${DESTDIR}/usr/bin/django-admin.py*
}
python3-Django_package() {
noarch=yes
pycompile_module="django"
depends="python3-setuptools python3-pytz"
short_desc="${short_desc/Python2/Python3}"
alternatives="django:django-admin:/usr/bin/django-admin3"
pkg_install() {
vmove usr/bin/*3
vmove usr/lib/python3*
vlicense LICENSE
}
}