Date: Thursday, March 16, 2023 @ 22:17:38
Author: alex19ep
Revision: 1421217
archrelease: copy trunk to community-testing-x86_64
Added:
mate-utils/repos/community-testing-x86_64/
mate-utils/repos/community-testing-x86_64/PKGBUILD
(from rev 1421216, mate-utils/trunk/PKGBUILD)
----------+
PKGBUILD | 38 ++++++++++++++++++++++++++++++++++++++
1 file changed, 38 insertions(+)
Copied: mate-utils/repos/community-testing-x86_64/PKGBUILD (from rev 1421216,
mate-utils/trunk/PKGBUILD)
===================================================================
--- community-testing-x86_64/PKGBUILD (rev 0)
+++ community-testing-x86_64/PKGBUILD 2023-03-16 22:17:38 UTC (rev 1421217)
@@ -0,0 +1,38 @@
+# Maintainer: Alexander Epaneshnikov <[email protected]>
+# Contributor: Brad Fanella <[email protected]>
+# Contributor: Martin Wimpress <[email protected]>
+
+pkgname=mate-utils
+pkgver=1.27.0
+pkgrel=1
+pkgdesc="Common MATE utilities for viewing disk usage, logs and fonts, taking
screenshots, managing dictionaries and searching files"
+url="http://mate-desktop.org"
+arch=('x86_64')
+license=('GPL')
+depends=('mate-desktop' 'gettext' 'libcanberra' 'libgtop' 'libsm' 'udisks2')
+makedepends=('inkscape' 'itstool' 'mate-panel' 'python')
+optdepends=('mate-panel: Look up words in dictionaries from the panel')
+groups=('mate-extra')
+conflicts=('mate-utils-gtk3')
+replaces=('mate-utils-gtk3')
+source=("https://pub.mate-desktop.org/releases/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz")
+sha256sums=('1ace72641eac1fcc814f09aab5f10fbd25a67bfb1c473c2118aea252631dfcb0')
+
+build() {
+ cd "${pkgname}-${pkgver}"
+ ./configure \
+ --prefix=/usr \
+ --libexecdir=/usr/lib/${_pkgbase} \
+ --sysconfdir=/etc \
+ --disable-maintainer-flags
+
+ #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
+}