summaryrefslogtreecommitdiff
path: root/community/guayadeque/PKGBUILD
diff options
context:
space:
mode:
authorMichał Masłowski <mtjm@mtjm.eu>2013-03-21 16:19:00 +0100
committerMichał Masłowski <mtjm@mtjm.eu>2013-03-21 16:19:00 +0100
commitbf6c93db356044781e343fe26da74d357b4beda3 (patch)
treea640223e20b7d04679c9cbbb3404992ba24ec9df /community/guayadeque/PKGBUILD
parentb12a78eb94707e8c026051243bbafded96c7c103 (diff)
parent76b6359ba6b2c7cce2f0b0725c7ecd831563cabf (diff)
Merge branch 'master' of ssh://parabolagnulinux.org:1863/home/parabola/abslibre-pre-mips64el
Conflicts: community/perl-package-stash-xs/PKGBUILD extra/mesa/PKGBUILD
Diffstat (limited to 'community/guayadeque/PKGBUILD')
-rwxr-xr-xcommunity/guayadeque/PKGBUILD35
1 files changed, 35 insertions, 0 deletions
diff --git a/community/guayadeque/PKGBUILD b/community/guayadeque/PKGBUILD
new file mode 100755
index 000000000..d720c56b2
--- /dev/null
+++ b/community/guayadeque/PKGBUILD
@@ -0,0 +1,35 @@
+# $Id: PKGBUILD 86605 2013-03-20 15:17:37Z alucryd $
+# Maintainer: Maxime Gauduin <alucryd@gmail.com>
+# Contributor: Sial <sial@cpan.org>
+# Contributor: Martin Herndl <martin.herndl@gmail.com>
+
+pkgname=guayadeque
+pkgver=0.3.5
+pkgrel=5
+pkgdesc="Lightweight music player"
+arch=('i686' 'x86_64')
+url="http://guayadeque.org/"
+license=('GPL3')
+depends=('curl' 'dbus' 'desktop-file-utils' 'flac' 'libgpod' 'taglib' 'wxgtk')
+makedepends=('cmake')
+optdepends=('gstreamer0.10-good-plugins: Support for additional file formats'
+ 'gvfs: Support for external devices')
+install=$pkgname.install
+source=("http://downloads.sourceforge.net/project/${pkgname}/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.bz2")
+sha256sums=('8281286a715731b567097238e1c0aaf962e052fbc7e2761b10f36407eb6ec4d5')
+
+build() {
+ cd "${srcdir}"/${pkgname}-${pkgver}
+
+# Build
+ ./build
+}
+
+package() {
+ cd "${srcdir}"/${pkgname}-${pkgver}
+
+# Install
+ make DESTDIR="${pkgdir}" install
+}
+
+# vim: ts=2 sw=2 et: