Date: Thursday, March 16, 2023 @ 19:52:35
Author: alex19ep
Revision: 1421176
archrelease: copy trunk to community-testing-x86_64
Added:
mate-netbook/repos/community-testing-x86_64/
mate-netbook/repos/community-testing-x86_64/PKGBUILD
(from rev 1421175, mate-netbook/trunk/PKGBUILD)
----------+
PKGBUILD | 31 +++++++++++++++++++++++++++++++
1 file changed, 31 insertions(+)
Copied: mate-netbook/repos/community-testing-x86_64/PKGBUILD (from rev 1421175,
mate-netbook/trunk/PKGBUILD)
===================================================================
--- community-testing-x86_64/PKGBUILD (rev 0)
+++ community-testing-x86_64/PKGBUILD 2023-03-16 19:52:35 UTC (rev 1421176)
@@ -0,0 +1,31 @@
+# Maintainer: Alexander Epaneshnikov <[email protected]>
+# Contributor: Brad Fanella <[email protected]>
+# Contributor: Martin Wimpress <[email protected]>
+
+pkgname=mate-netbook
+pkgver=1.27.0
+pkgrel=1
+pkgdesc="A simple window management tool"
+url="https://mate-desktop.org"
+arch=('x86_64')
+license=('GPL')
+depends=('libfakekey' 'mate-panel' 'gettext')
+groups=('mate-extra')
+conflicts=('mate-netbook-gtk3')
+replaces=('mate-netbook-gtk3')
+source=("https://pub.mate-desktop.org/releases/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz")
+sha256sums=('b41a890c515e4dc2f51038fbc0fca65344a3b8551c7d7fd04b5470f18049df4c')
+
+build() {
+ cd "${pkgname}-${pkgver}"
+ ./configure \
+ --prefix=/usr \
+ --libexec=/usr/lib/${pkgname} \
+ --sysconfdir=/etc
+ make
+}
+
+package() {
+ cd "${pkgname}-${pkgver}"
+ make DESTDIR="${pkgdir}" install
+}