diff options
author | root <root@rshg054.dnsready.net> | 2013-03-31 00:42:46 -0700 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2013-03-31 00:42:46 -0700 |
commit | bccd6b361bd252b2d32bc9a793c9e1b8448bfcd9 (patch) | |
tree | 36b3a3efb723f4bcf4bdcbc909481ec8c8092d58 /community/goobox | |
parent | ec8ec85d765aa7c0826e20196c70e20e0e4e7169 (diff) |
Sun Mar 31 00:42:46 PDT 2013
Diffstat (limited to 'community/goobox')
-rw-r--r-- | community/goobox/PKGBUILD | 23 | ||||
-rw-r--r-- | community/goobox/fix-notifications.patch | 25 |
2 files changed, 10 insertions, 38 deletions
diff --git a/community/goobox/PKGBUILD b/community/goobox/PKGBUILD index 191467d22..bf14a8002 100644 --- a/community/goobox/PKGBUILD +++ b/community/goobox/PKGBUILD @@ -1,30 +1,27 @@ -# $Id: PKGBUILD 79409 2012-11-04 15:53:30Z bgyorgy $ +# $Id: PKGBUILD 87383 2013-03-30 13:01:13Z bgyorgy $ # Maintainer: Balló György <ballogyor+arch at gmail dot com> pkgname=goobox -pkgver=3.0.1 -pkgrel=2 +pkgver=3.2.0 +pkgrel=1 pkgdesc="CD player and ripper for GNOME" arch=('i686' 'x86_64') url="http://people.gnome.org/~paobac/goobox/" license=('GPL') -depends=('brasero' 'gstreamer0.10-base-plugins' 'libmusicbrainz3' 'libnotify' 'xdg-utils') -makedepends=('gconf' 'intltool' 'gnome-doc-utils') -optdepends=('gstreamer0.10-good-plugins: rip CDs into flac and wav format') +depends=('gst-plugins-base' 'brasero' 'libmusicbrainz5' 'libdiscid' 'libcoverart' 'libnotify' 'xdg-utils') +makedepends=('intltool' 'itstool') +optdepends=('gst-plugins-good: rip CDs into flac and wav formats') install=$pkgname.install -source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz - fix-notifications.patch) -sha256sums=('344351ab8a9aee9e1c7f490e84c972a0df57eec5b44d31247c7ef268bf4cb60e' - '41f1307c271ee003d2e7435d6e9a7c5f72d3668ce0cc50842769c34f97c7fe99') +source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz) +sha256sums=('0bd5c31d53635588f46ad4d254866ff74356caee5edb45c1a3bce9c754cc6cb6') build() { cd "$srcdir/$pkgname-$pkgver" - # https://bugzilla.gnome.org/show_bug.cgi?id=674121 - patch -Np1 -i "$srcdir/fix-notifications.patch" + sed -i 's/LIBCOVERART_REQUIRED=1.0.0beta1/LIBCOVERART_REQUIRED=1.0.0/' configure{,.ac} ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \ - --disable-static --disable-scrollkeeper --disable-schemas-compile + --disable-static --disable-schemas-compile make } diff --git a/community/goobox/fix-notifications.patch b/community/goobox/fix-notifications.patch deleted file mode 100644 index 6ca9c65cb..000000000 --- a/community/goobox/fix-notifications.patch +++ /dev/null @@ -1,25 +0,0 @@ -diff -Naur goobox-3.0.1.orig/src/main.c goobox-3.0.1/src/main.c ---- goobox-3.0.1.orig/src/main.c 2011-08-22 19:55:45.000000000 +0200 -+++ goobox-3.0.1/src/main.c 2012-04-15 02:59:34.476683867 +0200 -@@ -729,15 +729,15 @@ - window, - NULL); - -- notify_notification_set_hint_byte (notification, -- "action-icons", -- TRUE); -+ notify_notification_set_hint (notification, -+ "action-icons", -+ g_variant_new_boolean (TRUE)); - } - - if (notification_supports_persistence) -- notify_notification_set_hint_byte (notification, -- "resident" /* "transient" */, -- TRUE); -+ notify_notification_set_hint (notification, -+ "resident" /* "transient" */, -+ g_variant_new_boolean (TRUE)); - - notify_notification_show (notification, NULL); - |