Date: Thursday, April 6, 2023 @ 16:12:24
Author: felixonmars
Revision: 1439557
archrelease: copy trunk to community-staging-any
Added:
mozo/repos/community-staging-any/
mozo/repos/community-staging-any/PKGBUILD
(from rev 1439556, mozo/trunk/PKGBUILD)
----------+
PKGBUILD | 29 +++++++++++++++++++++++++++++
1 file changed, 29 insertions(+)
Copied: mozo/repos/community-staging-any/PKGBUILD (from rev 1439556,
mozo/trunk/PKGBUILD)
===================================================================
--- community-staging-any/PKGBUILD (rev 0)
+++ community-staging-any/PKGBUILD 2023-04-06 16:12:24 UTC (rev 1439557)
@@ -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=2
+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
+}