mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-08 23:03:46 +00:00
27 lines
975 B
Bash
27 lines
975 B
Bash
# $Id: PKGBUILD 871 2009-08-06 22:10:43Z dgriffiths $
|
|
# Maintainer: Hugo Doria <hugodoria@gmail.com>
|
|
# Maintainer: Daniel J Griffiths <ghost1227@archlinux.us>
|
|
|
|
pkgname=listen
|
|
pkgver=0.6.3
|
|
pkgrel=2
|
|
pkgdesc="Music player and management for GNOME"
|
|
arch=('i686' 'x86_64')
|
|
url="http://www.listen-project.org/"
|
|
license=('GPL2')
|
|
depends=('pygtk' 'gnome-python-extras' 'pyvorbis' 'pymad' 'mutagen' \
|
|
'gstreamer0.10-python' 'python>=2.6' 'notification-daemon' 'pyxdg' \
|
|
'pywebkitgtk' 'pyinotify' 'gstreamer0.10-good-plugins')
|
|
makedepends=('gettext' 'pkgconfig' 'intltool')
|
|
install=listen.install
|
|
source=(http://download.listen-project.org/0.6/$pkgname-$pkgver.tar.gz)
|
|
|
|
md5sums=('eda59033c1d040b9dc10142af1db6a57')
|
|
|
|
build() {
|
|
cd $srcdir/$pkgname-$pkgver
|
|
chmod u+x ./mmkeys/setup.py
|
|
make CHECK_DEPENDS=0 PREFIX=/usr || return 1
|
|
#USE_GTKMOZEMBED=1 GTKMOZEMBED_PATH=/usr/lib/python2.6/site-packages/gtk-2.0/gtkmozembed.so || return 1
|
|
make DESTDIR=$startdir/pkg PREFIX=/usr install
|
|
}
|