summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 8aa77f3fff6767772fdc3db7af5427d650b0714c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# Maintainer: Mohammadreza Abdollahzadeh <morealaz at gmail dot com>
pkgname=python-setuptools-docs
pkgver=45.1.0
pkgrel=1
pkgdesc="Documentation for Python Setuptools module."
arch=('any')
url='https://github.com/pypa/setuptools'
license=('MIT')
source=("$pkgname-$pkgver.zip::https://readthedocs.org/projects/setuptools/downloads/htmlzip/latest/")
sha256sums=('SKIP')

package()
{
    install -d "$pkgdir/usr/share/doc/python-setuptools"
    cp -a $srcdir/setuptools-latest/* "$pkgdir/usr/share/doc/python-setuptools"
}
# vim:set ts=4 sw=4 et: