Date: Thursday, March 16, 2023 @ 17:26:16
Author: alex19ep
Revision: 1421123
archrelease: copy trunk to community-testing-x86_64
Added:
mate-desktop/repos/community-testing-x86_64/
mate-desktop/repos/community-testing-x86_64/PKGBUILD
(from rev 1421122, mate-desktop/trunk/PKGBUILD)
----------+
PKGBUILD | 35 +++++++++++++++++++++++++++++++++++
1 file changed, 35 insertions(+)
Copied: mate-desktop/repos/community-testing-x86_64/PKGBUILD (from rev 1421122,
mate-desktop/trunk/PKGBUILD)
===================================================================
--- community-testing-x86_64/PKGBUILD (rev 0)
+++ community-testing-x86_64/PKGBUILD 2023-03-16 17:26:16 UTC (rev 1421123)
@@ -0,0 +1,35 @@
+# Maintainer: Brad Fanella <[email protected]>
+# Contributor: Martin Wimpress <[email protected]>
+
+pkgname=mate-desktop
+pkgver=1.27.0
+pkgrel=1
+pkgdesc="Library with common API for various MATE modules"
+url="http://mate-desktop.org"
+arch=('x86_64')
+license=('GPL' 'LGPL')
+depends=('gtk3' 'startup-notification' 'iso-codes')
+makedepends=('gobject-introspection' 'intltool')
+groups=('mate')
+conflicts=('mate-desktop-gtk3' 'mate-desktop-schemas')
+replaces=('mate-desktop-gtk3' 'mate-desktop-schemas')
+source=("https://pub.mate-desktop.org/releases/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz")
+sha256sums=('45eff90433ad544600a7b5a79b1ccec1ca7466f3e2fcee6585248dd04c4265d4')
+
+build() {
+ cd "$pkgname-$pkgver"
+ ./configure \
+ --prefix=/usr \
+ --disable-schemas-compile
+
+ #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
+}