summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 573a2cbf5a6db183f40a763db7ea277a812c3f55 (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: Christian Hesse <mail@eworm.de>

pkgname=pacman-offline-git
pkgver=0.3.2.r0.gee3cfd3
pkgrel=1
pkgdesc='offline system update with pacman - git checkout'
arch=('any')
url='https://github.com/eworm-de/pacman-offline'
license=('GPL-3.0-or-later')
depends=('bash' 'systemd' 'pacman')
optdepends=('polkit: elevate privileges')
makedepends=('git' 'discount')
conflicts=('pacman-offline')
provides=('pacman-offline')
backup=('etc/pacman.d/offline.conf')
source=('git+https://github.com/eworm-de/pacman-offline.git')
sha256sums=('SKIP')

pkgver() {
	cd pacman-offline/

	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 rev-parse --short HEAD)"
	else
		printf '0.r%s.g%s' \
			"$(git rev-list --count master)" \
			"$(git rev-parse --short HEAD)"
	fi
}

package() {
	cd pacman-offline/

	make DESTDIR=${pkgdir} install
}