Date: Thursday, March 16, 2023 @ 17:03:53
Author: alex19ep
Revision: 1421110
archrelease: copy trunk to community-testing-x86_64
Added:
libmatemixer/repos/community-testing-x86_64/
libmatemixer/repos/community-testing-x86_64/PKGBUILD
(from rev 1421109, libmatemixer/trunk/PKGBUILD)
----------+
PKGBUILD | 32 ++++++++++++++++++++++++++++++++
1 file changed, 32 insertions(+)
Copied: libmatemixer/repos/community-testing-x86_64/PKGBUILD (from rev 1421109,
libmatemixer/trunk/PKGBUILD)
===================================================================
--- community-testing-x86_64/PKGBUILD (rev 0)
+++ community-testing-x86_64/PKGBUILD 2023-03-16 17:03:53 UTC (rev 1421110)
@@ -0,0 +1,32 @@
+# Maintainer: Alexander Epaneshnikov <[email protected]>
+# Contributor: Brad Fanella <[email protected]>
+# Contributor: Martin Wimpress <[email protected]>
+
+pkgname=libmatemixer
+pkgver=1.27.0
+pkgrel=1
+pkgdesc="Mixer library for MATE Desktop"
+url="https://mate-desktop.org"
+arch=('x86_64')
+license=('LGPL')
+depends=('glib2' 'gettext' 'libpulse' 'alsa-lib')
+source=("https://pub.mate-desktop.org/releases/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz")
+sha256sums=('1d4c2db1efbc9a4f4c3d310531c8b124af690a366fa4923d87979f2ca1d3b53e')
+
+build() {
+ cd "${pkgname}-${pkgver}"
+ ./configure \
+ --prefix=/usr \
+ --sysconfdir=/etc \
+ --localstatedir=/var
+
+ #https://bugzilla.gnome.org/show_bug.cgi?id=656231
+ sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+
+ make
+}
+
+package() {
+ cd "${pkgname}-${pkgver}"
+ make DESTDIR="${pkgdir}" install
+}