blob: 78b577da5055ca5250c2cdd361f721aaba37ac2f (
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
|
# Maintainer: Alexander Bocken <alexander@bocken.org>
pkgname=allioli
pkgver=r6.aa22651
pkgrel=1
pkgdesc="Read the 1914 Allioli Vulgata-Translation directly in your terminal"
arch=(any)
depends=(bash)
makedepends=('git')
url="https://github.com/AlexBocken/allioli"
license=('custom:Public Domain')
source=('allioli::git+https://github.com/AlexBocken/allioli.git')
md5sums=('SKIP')
pkgver() {
cd "$srcdir/$pkgname"
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}
build() {
cd "$srcdir/$pkgname"
make
}
package() {
cd "$srcdir/$pkgname"
install -Dm755 allioli $pkgdir/usr/bin/allioli
install -Dm644 LICENSE $pkgdir/usr/share/licenses/${pkgname}/LICENSE
}
|