[arch-commits] Commit in qastools/repos/community-x86_64 (PKGBUILD PKGBUILD)

David Runge dvzrv at archlinux.org
Thu Oct 3 13:35:49 UTC 2019


    Date: Thursday, October 3, 2019 @ 13:35:48
  Author: dvzrv
Revision: 512502

archrelease: copy trunk to community-x86_64

Added:
  qastools/repos/community-x86_64/PKGBUILD
    (from rev 512501, qastools/trunk/PKGBUILD)
Deleted:
  qastools/repos/community-x86_64/PKGBUILD

----------+
 PKGBUILD |   78 ++++++++++++++++++++++++++++++++-----------------------------
 1 file changed, 42 insertions(+), 36 deletions(-)

Deleted: PKGBUILD
===================================================================
--- PKGBUILD	2019-10-03 13:35:43 UTC (rev 512501)
+++ PKGBUILD	2019-10-03 13:35:48 UTC (rev 512502)
@@ -1,36 +0,0 @@
-# Maintainer: David Runge <dave at sleepmap.de>
-# Contributor: Esclapion <esclapion at gmail.com>
-
-pkgname=qastools
-pkgver=0.21.0
-pkgrel=4
-pkgdesc="A collection of desktop applications for the Linux sound system ALSA."
-arch=('x86_64')
-url="http://xwmw.org/qastools/"
-license=('GPL3')
-groups=('pro-audio')
-depends=('alsa-lib' 'hicolor-icon-theme' 'qt5-svg')
-makedepends=('cmake' 'qt5-tools')
-replaces=('qastools-qt5')
-source=("https://sourceforge.net/projects/${pkgname}/files/${pkgver}/${pkgname}_${pkgver}.tar.bz2")
-sha512sums=('f1410129ead6a779a0ef517ce437b2d7c09e8d386fc81edeb1f99718820b6ef7edd562477058a2e935bae703a3c621912b1f7e18416f43d20263fa4f8d4b61dc')
-
-prepare() {
-  cd "${pkgname}_${pkgver}"
-  mkdir -p build
-}
-
-build() {
-  cd "${pkgname}_${pkgver}/build"
-  cmake .. -DUSE_QT5=ON \
-    -DCMAKE_INSTALL_PREFIX='/usr' \
-    -DCMAKE_BUILD_TYPE=Release
-}
-
-package() {
-  cd "${pkgname}_${pkgver}/build"
-  make DESTDIR="${pkgdir}/" install
-  install -t "${pkgdir}/usr/share/doc/${pkgname}" \
-    -vDm 644 ../{CHANGELOG,README,TODO}
-}
-

Copied: qastools/repos/community-x86_64/PKGBUILD (from rev 512501, qastools/trunk/PKGBUILD)
===================================================================
--- PKGBUILD	                        (rev 0)
+++ PKGBUILD	2019-10-03 13:35:48 UTC (rev 512502)
@@ -0,0 +1,42 @@
+# Maintainer: David Runge <dave at sleepmap.de>
+# Contributor: Esclapion <esclapion at gmail.com>
+
+pkgname=qastools
+pkgver=0.22.0
+pkgrel=1
+pkgdesc="A collection of desktop applications for the Linux sound system ALSA."
+arch=('x86_64')
+url="https://gitlab.com/sebholt/qastools"
+license=('GPL3')
+groups=('pro-audio')
+depends=('alsa-lib' 'gcc-libs' 'glibc' 'hicolor-icon-theme' 'libudev.so'
+'qt5-base' 'qt5-svg')
+makedepends=('cmake' 'qt5-tools')
+source=("https://gitlab.com/sebholt/${pkgname}/-/archive/v${pkgver}/qastools-v${pkgver}.tar.gz")
+sha512sums=('9656960095520a1bee58efa3985dda30fae1b6be666dfd65b50cb582be21a40d273a1c06b69e870bc2b467f5d644b22ea30c2fd73eee9057b50de5e85864d712')
+
+prepare() {
+  mv -v "${pkgname}-v${pkgver}" "${pkgname}-${pkgver}"
+  cd "${pkgname}-${pkgver}"
+  mkdir -vp build
+}
+
+build() {
+  cd "${pkgname}-${pkgver}"
+  (
+    cd build
+    cmake -DCMAKE_INSTALL_PREFIX='/usr' \
+          -DCMAKE_BUILD_TYPE=Release \
+          -DUSE_QT5=ON \
+          ..
+  )
+  make -C build
+}
+
+package() {
+  cd "${pkgname}-${pkgver}"
+  make -C build DESTDIR="${pkgdir}/" install
+  install -vDm 644 {CHANGELOG,README.md,TODO} \
+    -t "${pkgdir}/usr/share/doc/${pkgname}"
+}
+



More information about the arch-commits mailing list