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

pkgname=mkinitcpio-archlogo
pkgver=0.2.0.r10.g8b31162
pkgrel=1
pkgdesc='Add colored Arch Linux ASCII art logo to early boot process'
arch=('any')
url='https://github.com/eworm-de/mkinitcpio-archlogo'
depends=('mkinitcpio')
makedepends=('git')
license=('GPL')
install=mkinitcpio-archlogo.install
source=('git://github.com/eworm-de/mkinitcpio-archlogo.git')
backup=('etc/archlogo.conf')
sha256sums=('SKIP')

pkgver() {
	cd mkinitcpio-archlogo/

	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
}

package() {
	cd mkinitcpio-archlogo/

	make DESTDIR="${pkgdir}" install
}