summaryrefslogtreecommitdiff
path: root/community-testing/ario/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'community-testing/ario/PKGBUILD')
-rw-r--r--community-testing/ario/PKGBUILD30
1 files changed, 30 insertions, 0 deletions
diff --git a/community-testing/ario/PKGBUILD b/community-testing/ario/PKGBUILD
new file mode 100644
index 000000000..4c6a86ea3
--- /dev/null
+++ b/community-testing/ario/PKGBUILD
@@ -0,0 +1,30 @@
+# $Id: PKGBUILD 63040 2012-01-30 18:51:46Z ibiru $
+# Maintainer: Jaroslav Lichtblau <dragonlord@aur.archlinux.org>
+
+pkgname=ario
+pkgver=1.5.1
+pkgrel=2
+pkgdesc="A GTK client for MPD (Music player daemon) inspired by Rhythmbox but much lighter and faster"
+arch=('i686' 'x86_64')
+url="http://ario-player.sourceforge.net/"
+license=('GPL')
+depends=('avahi' 'curl' 'dbus-glib' 'gnutls' 'hicolor-icon-theme' 'libglade' 'libmpdclient' 'libnotify' 'libsoup' 'libunique' 'taglib' 'xdg-utils')
+makedepends=('intltool' 'perl-xml-parser')
+options=('!libtool')
+install=$pkgname.install
+changelog=$pkgname.changelog
+source=(http://downloads.sourceforge.net/sourceforge/$pkgname-player/$pkgname-$pkgver.tar.gz)
+sha256sums=('0831281ab8634eb92424b61230eee035822f7f92d8b0526da7316c898239c91e')
+
+build() {
+ cd "${srcdir}/$pkgname-$pkgver"
+
+ ./configure --prefix=/usr --sysconfdir=/etc
+ make
+ }
+
+package () {
+ cd "${srcdir}/$pkgname-$pkgver"
+
+ make DESTDIR="${pkgdir}" install
+}