blob: 2c992dff2c3a2c2e212509387aeff7e1b143474d (
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
|
# Maintainer: Christian Hesse <mail@eworm.de>
pkgname=mpd-notification
pkgver=0.8.1
pkgrel=1
pkgdesc='Notify about tracks played by mpd'
arch=('i686' 'x86_64')
url='https://github.com/eworm-de/mpd-notification'
depends=('libsystemd' 'ffmpeg' 'file' 'iniparser' 'libnotify' 'libmpdclient' 'gnome-icon-theme')
makedepends=('systemd' 'markdown')
license=('GPL')
validpgpkeys=('BD84DE71F493DF6814B0167254EDC91609BC9183')
source=("http://www.eworm.de/download/${pkgname}/${pkgname}-${pkgver}.tar.xz"{,.asc})
sha256sums=('67c0af066033d058f2d6a6740186179856aeaa243c5308fac2a28cf45fc6507a'
'SKIP')
build() {
cd ${pkgname}-${pkgver}/
make
}
package() {
cd ${pkgname}-${pkgver}/
make DESTDIR="${pkgdir}" install
}
|