Date: Thursday, March 16, 2023 @ 19:46:16
Author: alex19ep
Revision: 1421170
archrelease: copy trunk to community-testing-x86_64
Added:
mate-media/repos/community-testing-x86_64/
mate-media/repos/community-testing-x86_64/PKGBUILD
(from rev 1421169, mate-media/trunk/PKGBUILD)
----------+
PKGBUILD | 32 ++++++++++++++++++++++++++++++++
1 file changed, 32 insertions(+)
Copied: mate-media/repos/community-testing-x86_64/PKGBUILD (from rev 1421169,
mate-media/trunk/PKGBUILD)
===================================================================
--- community-testing-x86_64/PKGBUILD (rev 0)
+++ community-testing-x86_64/PKGBUILD 2023-03-16 19:46:16 UTC (rev 1421170)
@@ -0,0 +1,32 @@
+# Maintainer: Alexander Epaneshnikov <[email protected]>
+# Contributor: Brad Fanella <[email protected]>
+# Contributor: Martin Wimpress <[email protected]>
+
+pkgname=mate-media
+pkgver=1.27.0
+pkgrel=1
+url="https://mate-desktop.org"
+pkgdesc="MATE Media Tools"
+arch=('x86_64')
+license=('GPL')
+depends=('libcanberra' 'libmatemixer' 'mate-desktop' 'mate-panel' 'gettext')
+source=("https://pub.mate-desktop.org/releases/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz")
+groups=('mate-extra')
+conflicts=('mate-media-gtk3')
+replaces=('mate-media-gtk3')
+sha256sums=('b64e3ea0525001ea48cc8fdcc2436591bbf994d385968883227cff93af6c8842')
+
+build() {
+ cd "${pkgname}-${pkgver}"
+ ./configure \
+ --prefix=/usr \
+ --sysconfdir=/etc \
+ --libexecdir=/usr/lib/${pkgname} \
+ --localstatedir=/var
+ make
+}
+
+package() {
+ cd "${pkgname}-${pkgver}"
+ make DESTDIR="${pkgdir}" install
+}