diff options
Diffstat (limited to 'extra/gnome-music/PKGBUILD')
-rw-r--r-- | extra/gnome-music/PKGBUILD | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/extra/gnome-music/PKGBUILD b/extra/gnome-music/PKGBUILD new file mode 100644 index 000000000..409f8ebb0 --- /dev/null +++ b/extra/gnome-music/PKGBUILD @@ -0,0 +1,27 @@ +# Maintainer: Jan de Groot <jgc@archlinux.org> + +pkgname=gnome-music +pkgver=3.10.0 +pkgrel=2 +pkgdesc="Music player and management application" +arch=(i686 x86_64) +license=('GPL') +url="https://wiki.gnome.org/Apps/Music" +depends=(grilo grilo-plugins tracker python gobject-introspection libdmapsharing python-dbus dbus-glib) +makedepends=(intltool) +options=('!libtool') +groups=('gnome-extra') +install=gnome-music.install +source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz) +sha256sums=('16ecbb93f4e69a7e85b86fc73413744073d69edaa09e71e135afe2c8de5b1d69') + +build() { + cd $pkgname-$pkgver + ./configure --prefix=/usr --disable-schemas-compile + make +} + +package() { + cd $pkgname-$pkgver + make -j1 DESTDIR="${pkgdir}" install +} |