initial import

This commit is contained in:
2025-06-22 20:39:04 -05:00
commit f8a70886f0
3428 changed files with 302546 additions and 0 deletions

25
python-docopt/PKGBUILD Normal file
View File

@@ -0,0 +1,25 @@
# Maintainer: Jesus E. <heckyel@riseup.net>
pkgname=python-docopt
_pkgname=docopt
pkgver=0.6.2
pkgrel=1
pkgdesc='Pythonic argument parser, that will make you smile'
arch=('any')
url='https://github.com/docopt/docopt'
license=('Expat')
depends=('python')
makedepends=('python-setuptools')
source=("https://pypi.python.org/packages/source/${_pkgname:0:1}/${_pkgname}/${_pkgname}-${pkgver}.tar.gz")
sha512sums=('af138feccf8c37b374ee44fcda4938a88107d434df13c173214021b1a3348b152a595095a86982b66ac03a11db8e0f1e9e6a3a65c98deea92330311daeb831a3')
build() {
cd "${srcdir}/${_pkgname}-${pkgver}"
python setup.py build
}
package() {
cd "${_pkgname}-${pkgver}"
python setup.py install --skip-build --optimize=1 --root="${pkgdir}"
install -D -m 0644 "LICENSE-MIT" -t "${pkgdir}/usr/share/licenses/${pkgname}"
}