Date: Thursday, March 16, 2023 @ 22:07:35
Author: alex19ep
Revision: 1421211
archrelease: copy trunk to community-testing-x86_64
Added:
mate-terminal/repos/community-testing-x86_64/
mate-terminal/repos/community-testing-x86_64/PKGBUILD
(from rev 1421210, mate-terminal/trunk/PKGBUILD)
----------+
PKGBUILD | 30 ++++++++++++++++++++++++++++++
1 file changed, 30 insertions(+)
Copied: mate-terminal/repos/community-testing-x86_64/PKGBUILD (from rev
1421210, mate-terminal/trunk/PKGBUILD)
===================================================================
--- community-testing-x86_64/PKGBUILD (rev 0)
+++ community-testing-x86_64/PKGBUILD 2023-03-16 22:07:35 UTC (rev 1421211)
@@ -0,0 +1,30 @@
+# Maintainer: Alexander Epaneshnikov <[email protected]>
+# Contributor: Brad Fanella <[email protected]>
+# Contributor: Martin Wimpress <[email protected]>
+
+pkgname=mate-terminal
+pkgver=1.27.0
+pkgrel=1
+pkgdesc="The MATE Terminal Emulator"
+url="https://mate-desktop.org"
+arch=('x86_64')
+license=('GPL')
+depends=('libsm' 'gettext' 'mate-desktop' 'vte3' 'perl')
+makedepends=('itstool' 'python')
+groups=('mate-extra')
+conflicts=('mate-terminal-gtk3')
+replaces=('mate-terminal-gtk3')
+source=("https://pub.mate-desktop.org/releases/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz")
+sha256sums=('42889c98045f011b7e633c2c1706dfc379d52c9c26aef386c8d6890c09d3681b')
+
+build() {
+ cd "${pkgname}-${pkgver}"
+ ./configure \
+ --prefix=/usr
+ make
+}
+
+package() {
+ cd "${pkgname}-${pkgver}"
+ make DESTDIR="${pkgdir}" install
+}