# Maintainer: Christian Hesse pkgname=mpd-notification-git pkgver=0.8.6.r2.ga4d100c pkgrel=1 pkgdesc='Notify about tracks played by mpd - git checkout' arch=('i686' 'x86_64') url='https://github.com/eworm-de/mpd-notification' depends=('libsystemd' 'ffmpeg' 'file' 'iniparser' 'libnotify' 'libmpdclient') makedepends=('git' 'systemd' 'discount') conflicts=('mpd-notification') provides=('mpd-notification') license=('GPL') source=('git+https://github.com/eworm-de/mpd-notification.git') sha256sums=('SKIP') pkgver() { cd mpd-notification/ 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 mpd-notification/ make } package() { cd mpd-notification/ make DESTDIR="${pkgdir}" install }