blob: c620d59486b0ef19579bae16306eb1da36eff6f5 (
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
33
34
35
36
37
38
39
|
# Maintainer: Emily <info@emy.sh>
_pkgname=nfuspire
pkgname=${_pkgname}-git
pkgdesc="Nspire FUSE filesystem"
pkgver=0.r1.g9d5b53e
pkgrel=1
arch=('any')
license=('GPL-3.0')
url="https://github.com/EmilyCSh/${_pkgname}"
depends=('libnspire')
makedepends=('git' 'pkgconfig' 'libnspire')
source=("$pkgname::git+https://github.com/EmilyCSh/$_pkgname.git")
sha256sums=('SKIP')
pkgver() {
cd ${pkgname}
if GITTAG="$(git describe --abbrev=0 --tags 2>/dev/null)"; then
printf '%s.r%s.g%s' \
"$(sed -e "s/^${pkgname%%-git}//" -e 's/^[-_/a-zA-Z]\+//' -e 's/[-_+]/./g' <<< ${GITTAG})" \
"$(git rev-list --count ${GITTAG}..)" \
"$(git log -1 --format='%h')"
else
printf '0.r%s.g%s' \
"$(git rev-list --count master)" \
"$(git log -1 --format='%h')"
fi
}
build() {
cd ${pkgname}
make
}
package() {
cd ${pkgname}
make DESTDIR="${pkgdir}" install
}
|