blob: bbe4e74d7bb458eb63e4c8eba638175976547be0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# Maintainer: Mohammadreza Abdollahzadeh <morealaz at gmail dot com>
# vim:set ts=4 sw=4 et:
pkgname=python-django-docs
pkgver=5.2
pkgrel=2
pkgdesc="Documentation for the Django framework"
arch=('any')
url='https://docs.djangoproject.com/'
license=('BSD-3-Clause')
source=("${pkgname}-${pkgver}.zip::https://media.djangoproject.com/docs/django-docs-${pkgver}-en.zip")
prepare() {
rm ${pkgname}-${pkgver}.zip
}
package() {
install -d ${pkgdir}/usr/share/doc/python-django/html
cp -r ./* ${pkgdir}/usr/share/doc/python-django/html/
chmod -R a=rX,u=rwX ${pkgdir}/usr/share/doc/python-django/html
}
sha256sums=('2f92314cb76e08cff82da3f0ff6fcf63db23d8745777c7239ec4af503e4481e9')
|