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

24
mallard-ducktype/PKGBUILD Normal file
View File

@@ -0,0 +1,24 @@
# Maintainer: Jesus E. <heckyel@riseup.net>
pkgname=mallard-ducktype
pkgver=1.0.2
pkgrel=1
pkgdesc='Parser for the lightweight Ducktype syntax for Mallard'
url="http://projectmallard.org"
arch=('any')
license=('Expat')
depends=('python')
makedepends=('python-setuptools')
source=("https://github.com/projectmallard/mallard-ducktype/archive/refs/tags/${pkgver}.tar.gz")
sha512sums=('7491d5bb3a0f7aeae73a9ecffdda7aac1ae3a9ab4595c8704913858a12309c890c7036b9b427fae816a62b598886d51679169648b64602c268dbf3eddf18587e')
build() {
cd $pkgname-$pkgver
python setup.py build
}
package() {
cd $pkgname-$pkgver
python setup.py install --root="$pkgdir" --optimize=1 --skip-build
install -Dt "$pkgdir/usr/share/licenses/$pkgname" -m644 COPYING
}