Date: Thursday, March 16, 2023 @ 16:58:09
Author: alex19ep
Revision: 1421105
archrelease: copy trunk to community-testing-x86_64
Added:
libmatekbd/repos/community-testing-x86_64/
libmatekbd/repos/community-testing-x86_64/PKGBUILD
(from rev 1421104, libmatekbd/trunk/PKGBUILD)
----------+
PKGBUILD | 33 +++++++++++++++++++++++++++++++++
1 file changed, 33 insertions(+)
Copied: libmatekbd/repos/community-testing-x86_64/PKGBUILD (from rev 1421104,
libmatekbd/trunk/PKGBUILD)
===================================================================
--- community-testing-x86_64/PKGBUILD (rev 0)
+++ community-testing-x86_64/PKGBUILD 2023-03-16 16:58:09 UTC (rev 1421105)
@@ -0,0 +1,33 @@
+# Maintainer: Alexander Epaneshnikov <[email protected]>
+# Contributor: Brad Fanella <[email protected]>
+# Contributor: Martin Wimpress <[email protected]>
+
+pkgname=libmatekbd
+pkgver=1.27.0
+pkgrel=1
+pkgdesc="MATE keyboard library"
+url="https://mate-desktop.org"
+arch=('x86_64')
+license=('LGPL')
+depends=('gtk3' 'gettext' 'libxklavier')
+makedepends=('python')
+conflicts=('libmatekbd-gtk3')
+replaces=('libmatekbd-gtk3')
+source=("https://pub.mate-desktop.org/releases/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz")
+sha256sums=('dcebc8e76f128554da17e87597780e984f771d744aad8d7b8615106c8aecceb0')
+
+build() {
+ cd "$pkgname-$pkgver"
+ ./configure \
+ --prefix=/usr
+
+ #https://bugzilla.gnome.org/show_bug.cgi?id=656231
+ sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+
+ make
+}
+
+package_libmatekbd() {
+ cd "${pkgname}-${pkgver}"
+ make DESTDIR="${pkgdir}" install
+}