summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: c13ea73d9e6b2da396ae30d8ce66c32054a13be3 (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=claws-mail-plugin-reloader-git
pkgver=0.r1.g8bc7c6e
pkgrel=1
pkgdesc='Claws-mail Plugin Reloader Plugin - git checkout'
arch=('i686' 'x86_64')
license=('GPL3')
url='http://www.claws-mail.org/'
depends=('claws-mail')
makedepends=('git')
conflicts=('claws-mail-plugin-reloader')
provides=('claws-mail-plugin-reloader')
source=('claws-mail-plugin-reloader::git://git.claws-mail.org/claws-mail-plugin-reloader.git')
sha256sums=('SKIP')

pkgver() {
	cd claws-mail-plugin-reloader/

	if GITTAG="$(git describe --abbrev=0 --tags 2>/dev/null)"; then
		echo "$(sed -e "s/^${pkgname%%-git}//" -e 's/^[-_/a-zA-Z]\+//' -e 's/[-_+]/./g' <<< ${GITTAG}).r$(git rev-list --count ${GITTAG}..).g$(git log -1 --format="%h")"
	else
		echo "0.r$(git rev-list --count master).g$(git log -1 --format="%h")"
	fi
}

build() {
	cd claws-mail-plugin-reloader/

	make
}

package() {
	cd claws-mail-plugin-reloader/

	install -D -m0755 plugin-reloader.so "${pkgdir}"/usr/lib/claws-mail/plugins/plugin-reloader.so
	#make DESTDIR="${pkgdir}" PREFIX="/usr/" install
}