summarylogtreecommitdiffstats
path: root/PKGBUILD
diff options
context:
space:
mode:
authorMichael Straube2016-12-24 14:32:23 +0100
committerMichael Straube2016-12-24 14:32:23 +0100
commit7dc13b42dfcf71292da3af3665693b623039a198 (patch)
treecff5ee782e213993f68a4658ac27841f15861850 /PKGBUILD
downloadaur-7dc13b42dfcf71292da3af3665693b623039a198.tar.gz
Initial import
Diffstat (limited to 'PKGBUILD')
-rw-r--r--PKGBUILD28
1 files changed, 28 insertions, 0 deletions
diff --git a/PKGBUILD b/PKGBUILD
new file mode 100644
index 000000000000..974b916461ec
--- /dev/null
+++ b/PKGBUILD
@@ -0,0 +1,28 @@
+# Maintainer: Michael Straube <straubem@gmx.de>
+
+pkgname=pogo
+pkgver=0.8.7
+pkgrel=1
+pkgdesc='Plays your music. Nothing else.'
+arch=('any')
+url='https://github.com/jendrikseipp/pogo'
+license=('GPL')
+depends=('pygtk' 'gstreamer0.10-python' 'gstreamer0.10-base-plugins' 'mutagen'
+ 'python2-dbus' 'python2-pillow')
+optdepends=('python2-notify: desktop notifications'
+ 'gnome-settings-daemon: GNOME media keys'
+ 'gstreamer0.10-plugins: additional codecs')
+source=("https://github.com/jendrikseipp/pogo/archive/v$pkgver.tar.gz")
+sha256sums=('144beebc043a834f17580ead90d30b64274d75dda524974d40754ee8344fc6f9')
+
+prepare() {
+ cd $pkgname-$pkgver
+
+ sed -i 's/python/python2/' pogo.py
+}
+
+package() {
+ cd $pkgname-$pkgver
+
+ make DESTDIR="$pkgdir" install
+}