blob: a6688a73120565384e14ed6cc54bf0a696001f37 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
# Maintainer (AUR): hashworks <mail@hashworks.net>
pkgname=mustache
pkgver=4.0b2
pkgrel=1
pkgdesc="Mustache implementation for modern C++"
license=('Boost')
arch=('any')
url='https://github.com/kainjow/Mustache'
source=("https://github.com/kainjow/Mustache/archive/v${pkgver}.tar.gz")
sha256sums=(ba7f02a4a3c4559821a13d7566d224c66806b370c82a5a5cf80be5b339fd32d4)
package() {
mkdir -p ${pkgdir}/usr/include/
cp Mustache-${pkgver}/mustache.hpp ${pkgdir}/usr/include/
}
|