Date: Thursday, March 16, 2023 @ 22:20:20
Author: alex19ep
Revision: 1421219
archrelease: copy trunk to community-testing-any
Added:
mozo/repos/community-testing-any/
mozo/repos/community-testing-any/PKGBUILD
(from rev 1421218, mozo/trunk/PKGBUILD)
----------+
PKGBUILD | 29 +++++++++++++++++++++++++++++
1 file changed, 29 insertions(+)
Copied: mozo/repos/community-testing-any/PKGBUILD (from rev 1421218,
mozo/trunk/PKGBUILD)
===================================================================
--- community-testing-any/PKGBUILD (rev 0)
+++ community-testing-any/PKGBUILD 2023-03-16 22:20:20 UTC (rev 1421219)
@@ -0,0 +1,29 @@
+# Maintainer: Alexander Epaneshnikov <[email protected]>
+# Contributor: Brad Fanella <[email protected]>
+# Contributor: Martin Wimpress <[email protected]>
+
+pkgname=mozo
+pkgver=1.27.0
+pkgrel=1
+pkgdesc="MATE menu editing tool"
+url="https://mate-desktop.org"
+arch=('any')
+license=('GPL')
+depends=('gtk3' 'python>=3.5' 'mate-menus' 'python-gobject' 'gettext'
'mate-panel')
+groups=('mate-extra')
+conflicts=('mozo-gtk3')
+replaces=('mozo-gtk3')
+source=("https://pub.mate-desktop.org/releases/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz")
+sha256sums=('0d97e5dfb7c446bb552d563290927306ae4c6f2b385649e4161ece8776fdccc1')
+
+build() {
+ cd "${pkgname}-${pkgver}"
+ PYTHON=/usr/bin/python ./configure \
+ --prefix=/usr
+ make
+}
+
+package() {
+ cd "${pkgname}-${pkgver}"
+ make DESTDIR="${pkgdir}" install
+}