summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--PKGBUILD31
1 files changed, 31 insertions, 0 deletions
diff --git a/PKGBUILD b/PKGBUILD
new file mode 100644
index 0000000..9bb973e
--- /dev/null
+++ b/PKGBUILD
@@ -0,0 +1,31 @@
+# Maintainer: Christian Hesse <mail@eworm.de>
+
+pkgname=mpd-notification-elogind
+_pkgname=mpd-notification
+pkgver=0.8.7
+pkgrel=1
+pkgdesc='Notify about tracks played by mpd'
+arch=('i686' 'x86_64')
+url='https://github.com/eworm-de/mpd-notification'
+depends=('libelogind' 'ffmpeg' 'file' 'iniparser' 'libnotify' 'libmpdclient')
+makedepends=('elogind' 'discount')
+provides=('mpd-notification')
+conflicts=('mpd-notification')
+license=('GPL')
+validpgpkeys=('BD84DE71F493DF6814B0167254EDC91609BC9183')
+source=("https://www.eworm.de/download/${_pkgname}/${_pkgname}-${pkgver}.tar.xz"{,.asc})
+sha256sums=('017ba30f402b41cba66571023893175056ef2b989b1b939c202abc0167988606'
+ 'SKIP')
+
+build() {
+ cd ${_pkgname}-${pkgver}/
+
+ make
+}
+
+package() {
+ cd ${_pkgname}-${pkgver}/
+
+ make DESTDIR="${pkgdir}" install
+}
+