Date: Thursday, March 16, 2023 @ 22:37:54
Author: alex19ep
Revision: 1421221
archrelease: copy trunk to community-testing-x86_64
Added:
pluma/repos/community-testing-x86_64/
pluma/repos/community-testing-x86_64/PKGBUILD
(from rev 1421220, pluma/trunk/PKGBUILD)
----------+
PKGBUILD | 43 +++++++++++++++++++++++++++++++++++++++++++
1 file changed, 43 insertions(+)
Copied: pluma/repos/community-testing-x86_64/PKGBUILD (from rev 1421220,
pluma/trunk/PKGBUILD)
===================================================================
--- community-testing-x86_64/PKGBUILD (rev 0)
+++ community-testing-x86_64/PKGBUILD 2023-03-16 22:37:54 UTC (rev 1421221)
@@ -0,0 +1,43 @@
+# Maintainer: Alexander Epaneshnikov <[email protected]>
+# Contributor: Brad Fanella <[email protected]>
+# Contributor: Martin Wimpress <[email protected]>
+
+pkgname=pluma
+pkgver=1.27.0
+pkgrel=1
+pkgdesc="A powerful text editor for MATE"
+url="https://mate-desktop.org"
+arch=('x86_64')
+license=('GPL')
+depends=('iso-codes' 'mate-desktop' 'zenity' 'gtksourceview4' 'libpeas'
'python' 'gettext' 'enchant' 'libsm')
+makedepends=('itstool' 'gobject-introspection' 'python' 'mate-common'
'yelp-tools' 'autoconf-archive')
+optdepends=('python-gobject: to use the python plugins')
+groups=('mate-extra')
+conflicts=('pluma-gtk3')
+replaces=('pluma-gtk3')
+source=("https://pub.mate-desktop.org/releases/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz")
+sha512sums=('ce2ab6fb4f7cfa93b8b1c22a80b4a688f63f9ec61fd173c22684a9cb49a83551cc9e5ed45a04cec23683d85be059615d90abd7d6b7e4b3bf1b3d6287d4292f78')
+
+prepare() {
+ cd "${pkgname}-${pkgver}"
+ ./autogen.sh
+}
+
+build() {
+ cd "${pkgname}-${pkgver}"
+ ./configure \
+ --prefix=/usr \
+ --libexecdir=/usr/lib/${pkgname} \
+ --enable-gtk-doc=no \
+ --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
+}