blob: eb737834c112e19b4a409d7a49cbf427dfa11670 (
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
|
# Contributor: Jakub Jirutka <jakub@jirutka.cz>
# Maintainer: Jakub Jirutka <jakub@jirutka.cz>
pkgname=shellcat
pkgver=1.2
pkgrel=0
pkgdesc="Templating system with shell syntax"
url="https://github.com/jwilk/shellcat"
arch="all"
license="MIT"
checkdepends="coreutils"
makedepends="perl"
subpackages="$pkgname-doc"
source="$pkgname-$pkgver.tar.gz::https://github.com/jwilk/$pkgname/archive/$pkgver.tar.gz"
builddir="$srcdir/$pkgname-$pkgver"
build() {
cd "$builddir"
make
make -C doc
}
check() {
cd "$builddir"
make check
}
package() {
cd "$builddir"
make DESTDIR="$pkgdir" PREFIX=/usr install
}
sha512sums="1c919ae4c2009f65d06f0f5192524ae5d690bf950d6ce4fe256197107b462fc1347891fba294a1b3cb005e8353028ff77e6aee496751e0efd3f19a20e7d97d62 shellcat-1.2.tar.gz"
|