diff options
author | root <root@rshg054.dnsready.net> | 2011-10-06 23:14:37 +0000 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2011-10-06 23:14:37 +0000 |
commit | 5442e9b8f357932ed5d6cb46e90fcbf6f453469f (patch) | |
tree | e2393e2f381e2e539810e51c34e56c8f687c153c /community/parole/PKGBUILD | |
parent | 068f1f30c0bba25b6b88cefbe982a72535fa1951 (diff) |
Thu Oct 6 23:14:37 UTC 2011
Diffstat (limited to 'community/parole/PKGBUILD')
-rw-r--r-- | community/parole/PKGBUILD | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/community/parole/PKGBUILD b/community/parole/PKGBUILD new file mode 100644 index 000000000..38338fa4f --- /dev/null +++ b/community/parole/PKGBUILD @@ -0,0 +1,31 @@ +# $Id: PKGBUILD 56327 2011-10-05 16:30:16Z spupykin $ +# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> +# Maintainer: TDY <tdy@gmx.com> + +pkgname=parole +pkgver=0.2.0.6 +pkgrel=1 +pkgdesc="A modern media player based on the GStreamer framework" +arch=('i686' 'x86_64') +url="http://goodies.xfce.org/projects/applications/parole/" +license=('GPL') +depends=('gstreamer0.10-base>=0.10.11' 'hicolor-icon-theme' 'libnotify>=0.4.1' + 'libxfcegui4>=4.6.0' 'taglib>=1.4') +makedepends=('pkgconfig>=0.9.0' 'xfce4-dev-tools') +optdepends=('xulrunner>=1.9.1: browser plugin') +conflicts=('parole-media-player-git') +options=('!libtool') +install=parole.install +source=(http://archive.xfce.org/src/apps/$pkgname/${pkgver%.*.*}/$pkgname-$pkgver.tar.bz2) +md5sums=('5d7e5ab7535bdf89508a8d7e551f9187') + +build() { + cd "$srcdir/$pkgname-$pkgver" + ./configure --prefix=/usr --libexecdir=/usr/lib --enable-taglib --enable-libnotify + make +} + +package() { + cd "$srcdir/$pkgname-$pkgver" + make DESTDIR="$pkgdir" install +} |