Package Details: mustach 1.1.0-1

Git Clone URL: https://aur.archlinux.org/mustach.git (read-only, click to copy)
Package Base: mustach
Description: mustach is a C implementation of the mustache template specification.
Upstream URL: https://gitlab.com/jobol/mustach/
Licenses: ISC
Submitter: JohannC
Maintainer: clarfonthey
Last Packager: clarfonthey
Votes: 1
Popularity: 0.000000
First Submitted: 2020-01-29 17:28 (UTC)
Last Updated: 2022-01-30 23:42 (UTC)

Dependencies (3)

Required by (0)

Sources (1)

Latest Comments

clarfonthey commented on 2021-08-16 17:25 (UTC)

1.1.0 is out. Git patch:

diff --git a/PKGBUILD b/PKGBUILD
index 1e6ceb2..4666983 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,29 +1,27 @@
 # Maintainer: Johann CAHIER <johann.cahier@iot.bzh>
 pkgname=mustach
-pkgver=0.99
+pkgver=1.1.0
 pkgrel=1
-pkgdesc="mustach is a C implementation of the mustache template specification.
-See : http://mustache.github.io/"
+pkgdesc="mustach is a C implementation of the mustache template specification."
 arch=('x86_64')
 url="https://gitlab.com/jobol/mustach/"
-license=('Apache-2.0')
+license=('ISC')
 depends=('json-c')
 makedepends=('gcc' 'make' 'json-c')
 checkdepends=()
 optdepends=()
-provides=('mustach')
+provides=()
 conflicts=()
 replaces=()
 backup=()
 options=()
 install=
 changelog=
-source=("https://gitlab.com/jobol/mustach/-/archive/0.99/mustach-0.99.zip")
+source=("https://gitlab.com/jobol/mustach/-/archive/$pkgver/mustach-$pkgver.zip")
 noextract=()
-md5sums=('c36a37d9e46c7db1225853c7fb207265')
+md5sums=('4398ef3702b8c417c579eccde9006dc4')
 validpgpkeys=()

-
 build() {
     cd "$srcdir/$pkgname-$pkgver"
     make
@@ -31,6 +29,5 @@ build() {

 package() {
     cd "$srcdir/$pkgname-$pkgver"
-    make DESTDIR="$pkgdir/" install
-#    install -D -m644 "${srcdir}/${pkgname%-git}/LICENSE-2.0.txt" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE-2.0.txt"
+    make DESTDIR="$pkgdir/" PREFIX=/usr install
 }