diff options
author | Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org> | 2020-02-06 02:42:09 +0100 |
---|---|---|
committer | Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org> | 2020-02-06 02:43:37 +0100 |
commit | 52461ffdd89d245146c29fba977c56169a95084d (patch) | |
tree | 9cecc68fe33fa35687cf27e3cf1299aee362f140 | |
parent | e827a13adae17bff5ed2ab706f115f684dc1a23b (diff) | |
download | abslibre-52461ffdd89d245146c29fba977c56169a95084d.tar.gz abslibre-52461ffdd89d245146c29fba977c56169a95084d.tar.bz2 abslibre-52461ffdd89d245146c29fba977c56169a95084d.zip |
pcr: mustache: sync with aur
The AUR PKGBUILD of kiwix-tools now need this version of
mustache.
This was build tested on 686.
Signed-off-by: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
-rw-r--r-- | pcr/mustache/PKGBUILD | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/pcr/mustache/PKGBUILD b/pcr/mustache/PKGBUILD index a6688a731..0ce2802db 100644 --- a/pcr/mustache/PKGBUILD +++ b/pcr/mustache/PKGBUILD @@ -1,16 +1,21 @@ # Maintainer (AUR): hashworks <mail@hashworks.net> + +# parabola changes and rationale: +# - No changes + pkgname=mustache -pkgver=4.0b2 -pkgrel=1 +pkgver=3.2.1 +pkgrel=2 pkgdesc="Mustache implementation for modern C++" license=('Boost') -arch=('any') +arch=('armv7h' 'i686' 'x86_64') url='https://github.com/kainjow/Mustache' source=("https://github.com/kainjow/Mustache/archive/v${pkgver}.tar.gz") -sha256sums=(ba7f02a4a3c4559821a13d7566d224c66806b370c82a5a5cf80be5b339fd32d4) +sha256sums=(0d17298a81c08f12ebc446cdee387268a395d34bb724050fe67d5ce8c4e98b7a) package() { mkdir -p ${pkgdir}/usr/include/ cp Mustache-${pkgver}/mustache.hpp ${pkgdir}/usr/include/ + chmod 644 ${pkgdir}/usr/include/mustache.hpp } |