[arch-commits] Commit in qjackctl/trunk (PKGBUILD)

David Runge dvzrv at archlinux.org
Thu Jan 14 19:16:56 UTC 2021


    Date: Thursday, January 14, 2021 @ 19:16:56
  Author: dvzrv
Revision: 820883

upgpkg: qjackctl 0.9.0-2: Rebuild to fix an issue with configs/dbus.

As discussed upstream (https://github.com/rncbc/qjackctl/issues/114) and
on our tracker (https://bugs.archlinux.org/task/69303) using cmake
as build system introduces weird issues with dbus capabilities and
config persistence.
Reverting to autotools until the cmake setup is fixed.

Modified:
  qjackctl/trunk/PKGBUILD

----------+
 PKGBUILD |   17 +++++++++--------
 1 file changed, 9 insertions(+), 8 deletions(-)

Modified: PKGBUILD
===================================================================
--- PKGBUILD	2021-01-14 18:38:11 UTC (rev 820882)
+++ PKGBUILD	2021-01-14 19:16:56 UTC (rev 820883)
@@ -4,7 +4,7 @@
 
 pkgname=qjackctl
 pkgver=0.9.0
-pkgrel=1
+pkgrel=2
 pkgdesc="A Qt front-end for the JACK low-latency audio server"
 url="https://qjackctl.sourceforge.io"
 arch=('x86_64')
@@ -17,20 +17,21 @@
 sha512sums=('5aa6f3e86b6a5c528daa5fdb71b5400d5882fea6569d585a86bb6b9fa66b62699472fd82999a6f4eb1a375c70e684a20214240c1fc3b44239c22d182e3ae1b1c')
 b2sums=('3be89091b6efb34d2dffee92fdfda5dabadc8b6e9f9a248cc5cd60df423482dc65342e9758a98f34c5c01bfba74eac64039e3ec2de157df0e03f8bf09a7a14fc')
 
+prepare() {
+  cd "${pkgname}-${pkgver}"
+  autoreconf -vfi
+}
+
 build() {
   cd "${pkgname}-${pkgver}"
-  cmake -DCMAKE_INSTALL_PREFIX=/usr \
-        -DCMAKE_BUILD_TYPE='None' \
-        -Wno-dev \
-        -B build \
-        -S .
-  make VERBOSE=1 -C build
+  ./configure --prefix='/usr'
+  make
 }
 
 package() {
   depends+=('libasound.so' 'libjack.so')
   cd "${pkgname}-${pkgver}"
-  make VERBOSE=1 DESTDIR="$pkgdir" install -C build
+  make VERBOSE=1 DESTDIR="$pkgdir" install
   install -t "${pkgdir}/usr/share/doc/${pkgname}" \
     -vDm 644 {AUTHORS,ChangeLog,README,TODO,TRANSLATORS}
 }



More information about the arch-commits mailing list