blob: fe61a44446e8608830efbdade4bc8b60cd9ac26f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
# Maintainer: Clar Fon <usr@ltdk.xyz>
# Contributor: Johann CAHIER <johann.cahier@iot.bzh>
pkgname=mustach
pkgver=1.1.0
pkgrel=1
pkgdesc="mustach is a C implementation of the mustache template specification."
arch=('x86_64' 'aarch64')
url="https://gitlab.com/jobol/mustach/"
license=('ISC')
depends=('json-c')
makedepends=('gcc' 'make')
checkdepends=()
optdepends=()
provides=()
conflicts=()
replaces=()
backup=()
options=()
install=
changelog=
source=("https://gitlab.com/jobol/mustach/-/archive/$pkgver/mustach-$pkgver.zip")
noextract=()
sha256sums=('a31ede8351e03ae0c87d9d79fcbe40eef11daf6587f13c583847c5142bb3986e')
validpgpkeys=()
build() {
cd "$srcdir/$pkgname-$pkgver"
make
}
package() {
cd "$srcdir/$pkgname-$pkgver"
make DESTDIR="$pkgdir/" PREFIX=/usr install
}
|