Date: Thursday, March 16, 2023 @ 19:48:31
Author: alex19ep
Revision: 1421172
archrelease: copy trunk to community-testing-x86_64
Added:
mate-menus/repos/community-testing-x86_64/
mate-menus/repos/community-testing-x86_64/PKGBUILD
(from rev 1421171, mate-menus/trunk/PKGBUILD)
----------+
PKGBUILD | 35 +++++++++++++++++++++++++++++++++++
1 file changed, 35 insertions(+)
Copied: mate-menus/repos/community-testing-x86_64/PKGBUILD (from rev 1421171,
mate-menus/trunk/PKGBUILD)
===================================================================
--- community-testing-x86_64/PKGBUILD (rev 0)
+++ community-testing-x86_64/PKGBUILD 2023-03-16 19:48:31 UTC (rev 1421172)
@@ -0,0 +1,35 @@
+# Maintainer: Alexander Epaneshnikov <[email protected]>
+# Contributor: Brad Fanella <[email protected]>
+# Contributor: Martin Wimpress <[email protected]>
+
+pkgname=mate-menus
+pkgver=1.27.0
+pkgrel=1
+pkgdesc="MATE menu specifications"
+url="https://mate-desktop.org"
+arch=('x86_64')
+license=('GPL' 'LGPL')
+depends=('glib2')
+makedepends=('gobject-introspection')
+groups=('mate')
+source=("https://pub.mate-desktop.org/releases/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz")
+sha256sums=('04135790e856c019affbb61ce3d3ed463a0e4ef18b01e51c9de1c516048e8b56')
+
+build() {
+ cd "${pkgname}-${pkgver}"
+ ./configure \
+ --prefix=/usr \
+ --sysconfdir=/etc \
+ --localstatedir=/var \
+ --enable-python
+
+ #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
+}