Date: Thursday, February 8, 2018 @ 21:55:55 Author: arojas Revision: 290415
archrelease: copy trunk to community-staging-x86_64 Added: mate-notification-daemon/repos/community-staging-x86_64/ mate-notification-daemon/repos/community-staging-x86_64/PKGBUILD (from rev 290414, mate-notification-daemon/trunk/PKGBUILD) ----------+ PKGBUILD | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) Copied: mate-notification-daemon/repos/community-staging-x86_64/PKGBUILD (from rev 290414, mate-notification-daemon/trunk/PKGBUILD) =================================================================== --- community-staging-x86_64/PKGBUILD (rev 0) +++ community-staging-x86_64/PKGBUILD 2018-02-08 21:55:55 UTC (rev 290415) @@ -0,0 +1,35 @@ +# Maintainer: +# Contributor: Martin Wimpress <c...@flexion.org> + +pkgname=mate-notification-daemon +pkgver=1.20.0 +pkgrel=1 +provides=('notification-daemon') +pkgdesc="Notification daemon for MATE" +url="https://mate-desktop.org" +arch=('x86_64') +license=('GPL') +groups=('mate') +depends=('dbus-glib' 'libcanberra' 'libwnck3' 'libnotify') +makedepends=('intltool' 'python') +conflicts=('mate-notification-daemon-gtk3') +replaces=('mate-notification-daemon-gtk3') +source=("https://pub.mate-desktop.org/releases/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz") +sha256sums=('ae304c5beca9aae5bf757d41692edabcb887dd43b0bdc89d07a2c57fed290437') + +build() { + cd ${pkgname}-${pkgver} + ./configure \ + --prefix=/usr \ + --libexecdir=/usr/lib/${pkgname} + + #https://bugzilla.gnome.org/show_bug.cgi?id=656231 + sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool + + make +} + +package() { + cd ${pkgname}-${pkgver} + make DESTDIR="${pkgdir}" install +}