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

David Runge dvzrv at gemini.archlinux.org
Fri Dec 10 17:51:41 UTC 2021


    Date: Friday, December 10, 2021 @ 17:51:41
  Author: dvzrv
Revision: 1068135

archrelease: copy trunk to community-x86_64

Added:
  drumstick/repos/community-x86_64/PKGBUILD
    (from rev 1068134, drumstick/trunk/PKGBUILD)
Deleted:
  drumstick/repos/community-x86_64/PKGBUILD

----------+
 PKGBUILD |   93 ++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 47 insertions(+), 46 deletions(-)

Deleted: PKGBUILD
===================================================================
--- PKGBUILD	2021-12-10 17:51:34 UTC (rev 1068134)
+++ PKGBUILD	2021-12-10 17:51:41 UTC (rev 1068135)
@@ -1,46 +0,0 @@
-# Maintainer: David Runge <dvzrv at archlinux.org>
-# Contributor: speps <speps at aur dot archlinux dot org>
-# Contributor: Dany Martineau <dany.luc.martineau at gmail.com>
-
-pkgname=drumstick
-pkgver=2.4.1
-pkgrel=1
-pkgdesc="MIDI libraries for Qt5/C++"
-arch=('x86_64')
-url="https://drumstick.sourceforge.io/"
-license=('GPL2')
-depends=('gcc-libs' 'glibc' 'hicolor-icon-theme' 'qt5-base')
-makedepends=('alsa-lib' 'cmake' 'doxygen' 'docbook-xsl' 'fluidsynth' 'graphviz'
-'libpulse' 'qt5-tools')
-provides=('libdrumstick-alsa.so' 'libdrumstick-file.so' 'libdrumstick-rt.so'
-'libdrumstick-widgets.so')
-source=("https://downloads.sourceforge.net/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.bz2")
-sha512sums=('1e3b37d06d857676e7e7f54d6ef4117a83cbf1cd28ae5c8459ed2bac85a87c21d891c1553c2103cfe2af288e4d12ea1bd7c8c940c9970af343f30beee4b7d79e')
-b2sums=('e15c553fc3dc932d5468e8559616115633947d567b91168a9fa9d6e2268e89e32bcf79d7f8c1011f6b6d1e27b16c4613929a3249caaf47d322b7702f7ccc6da1')
-
-build() {
-  cd "${pkgname}-${pkgver}"
-  cmake -DCMAKE_INSTALL_PREFIX=/usr \
-        -DCMAKE_BUILD_TYPE='None' \
-        -Wno-dev \
-        -B build \
-        -S .
-  make VERBOSE=1 -C build
-}
-
-check() {
-  cd "${pkgname}-${pkgver}"
-  # some tests fail due to insufficient system privileges, hence only run those
-  # that make sense in the build environment
-  # https://sourceforge.net/p/drumstick/bugs/24/
-  make test -C build/tests/fileTest1
-  make test -C build/tests/fileTest2
-}
-
-package() {
-  depends+=('libasound.so' 'libfluidsynth.so' 'libpulse.so' 'libpulse-simple.so')
-  cd "${pkgname}-${pkgver}"
-  make DESTDIR="${pkgdir}/" install -C build
-  install -t "${pkgdir}/usr/share/doc/${pkgname}/" \
-    -vDm 644 {AUTHORS,ChangeLog,NEWS,readme.md,TODO}
-}

Copied: drumstick/repos/community-x86_64/PKGBUILD (from rev 1068134, drumstick/trunk/PKGBUILD)
===================================================================
--- PKGBUILD	                        (rev 0)
+++ PKGBUILD	2021-12-10 17:51:41 UTC (rev 1068135)
@@ -0,0 +1,47 @@
+# Maintainer: David Runge <dvzrv at archlinux.org>
+# Contributor: speps <speps at aur dot archlinux dot org>
+# Contributor: Dany Martineau <dany.luc.martineau at gmail.com>
+
+pkgname=drumstick
+pkgver=2.5.0
+pkgrel=1
+pkgdesc="MIDI libraries for Qt5/C++"
+arch=(x86_64)
+url="https://drumstick.sourceforge.io/"
+license=(GPL2)
+depends=(gcc-libs glibc hicolor-icon-theme qt5-base)
+makedepends=(alsa-lib cmake doxygen docbook-xsl fluidsynth graphviz
+libpulse qt5-tools)
+provides=(libdrumstick-alsa.so libdrumstick-file.so libdrumstick-rt.so
+libdrumstick-widgets.so)
+source=("https://downloads.sourceforge.net/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.bz2")
+sha512sums=('8ab75d4e87d30f7bb77212bddf3dafcf6fc80f2556516464b2f05201350187e0e12b2958805160a9dd22e796da15a473b1e89219d6a9d5147d314ed8c6171128')
+b2sums=('402d33c03c2ae55c263672919c74ee088e38e5d5f174a403fa486a5d8dbd772f4d2435cf2045a39078875e3adb1257b6a4b5bd02d8e5a44175e3bbd4a7486b31')
+
+build() {
+  cd "${pkgname}-${pkgver}"
+  cmake -DCMAKE_INSTALL_PREFIX=/usr \
+        -DCMAKE_BUILD_TYPE=None \
+        -Wno-dev \
+        -B build \
+        -S .
+  make VERBOSE=1 -C build
+}
+
+check() {
+  cd "${pkgname}-${pkgver}"
+  # some tests fail due to insufficient system privileges, hence only run those
+  # that make sense in the build environment
+  # https://sourceforge.net/p/drumstick/bugs/24/
+  make test -C build/tests/fileTest1
+  make test -C build/tests/fileTest2
+}
+
+package() {
+  depends+=(libasound.so libfluidsynth.so libpulse.so libpulse-simple.so)
+
+  cd "${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}/" install -C build
+  install -t "${pkgdir}/usr/share/doc/${pkgname}/" \
+    -vDm 644 {AUTHORS,ChangeLog,NEWS,readme.md,TODO}
+}



More information about the arch-commits mailing list