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

23
mustach/PKGBUILD Normal file
View File

@@ -0,0 +1,23 @@
# Maintainer: Jesus E. <heckyel@riseup.net>
pkgname=mustach
pkgver=1.2.10
pkgrel=1
pkgdesc="A C implementation of the {{mustache}} template specification"
arch=('i686' 'x86_64')
url='https://gitlab.com/jobol/mustach/'
license=('ISC')
depends=('json-c')
source=("https://gitlab.com/jobol/mustach/-/archive/$pkgver/$pkgname-$pkgver.zip")
sha512sums=('f5d70b54bc0d9518f8126e209c466d7476f4a0865d52cc20356ef16fff8e4b403ec14a88c7be23e56230b42b129c4204cc89f0e1d8477f2457696d5d14a1e1f0')
build() {
cd "$srcdir/$pkgname-$pkgver"
make
}
package() {
cd "$srcdir/$pkgname-$pkgver"
make DESTDIR="$pkgdir/" PREFIX=/usr install
install -Dm644 LICENSE.txt -t "$pkgdir/usr/share/licenses/$pkgname/"
}