25 lines
732 B
Bash
25 lines
732 B
Bash
# Maintainer: Jesus E. <heckyel@riseup.net>
|
|
|
|
pkgname=mustpl
|
|
pkgver=0.1.1
|
|
pkgrel=1
|
|
pkgdesc="Logic-less templating tool for the commandline"
|
|
arch=('i686' 'x86_64')
|
|
url='https://github.com/tarampampam/mustpl'
|
|
license=('Expat')
|
|
depends=('mustach')
|
|
options=('strip')
|
|
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/tarampampam/mustpl/archive/refs/tags/v${pkgver}.tar.gz")
|
|
sha512sums=('f8a734ad056dda4aecea344d532c36394b2bdfed4e03e71f3773efed576c2189ae0719d14182b1887da9b589d6eb8f958a317fecca994e8848f588bc599b3934')
|
|
|
|
build() {
|
|
cd "$srcdir/$pkgname-$pkgver"
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "$srcdir/$pkgname-$pkgver"
|
|
install -Dm755 $pkgname -t "$pkgdir/usr/bin"
|
|
install -Dm644 LICENSE -t "$pkgdir/usr/share/licenses/$pkgname"
|
|
}
|