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

pkgname=extract-artwork-git
pkgver=0.0.3.r1.gf416f3e
pkgrel=1
pkgdesc='extract artwork from media files  - git checkout'
arch=('i686' 'x86_64')
url='https://github.com/eworm-de/extract-artwork'
depends=('ffmpeg')
makedepends=('git' 'discount')
conflicts=('extract-artwork')
provides=('extract-artwork')
license=('GPL')
source=('git+https://github.com/eworm-de/extract-artwork.git')
sha256sums=('SKIP')

pkgver() {
	cd extract-artwork/

	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
}

build() {
	cd extract-artwork/

	make
}

package() {
	cd extract-artwork/

	make DESTDIR="${pkgdir}" install
}