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

David Runge dvzrv at archlinux.org
Mon Aug 5 18:13:29 UTC 2019


    Date: Monday, August 5, 2019 @ 18:13:28
  Author: dvzrv
Revision: 497504

upgpkg: csound 6.13.0-2

Rebuilding with CMAKE_BUILD_TYPE=Release, because by default some weird BETA mode is forced (FS#63348).
Disabling scansyn opcodes, as noone is actually allowed to distribute them (https://github.com/csound/csound/issues/1148).

Modified:
  csound/trunk/PKGBUILD

----------+
 PKGBUILD |    6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

Modified: PKGBUILD
===================================================================
--- PKGBUILD	2019-08-05 17:47:00 UTC (rev 497503)
+++ PKGBUILD	2019-08-05 18:13:28 UTC (rev 497504)
@@ -6,7 +6,7 @@
 pkgbase=csound
 pkgname=('csound' 'csound-doc')
 pkgver=6.13.0
-pkgrel=1
+pkgrel=2
 pkgdesc="A programming language for sound rendering and signal processing."
 arch=('x86_64')
 url="https://csound.com"
@@ -33,7 +33,11 @@
 build() {
   local _java_major=$(java --version 2>/dev/null |grep 'openjdk'| cut -d ' ' -f2| cut -d '.' -f1)
   cd "${pkgbase}-${pkgver}/build"
+  # without CMAKE_BUILD_TYPE=Release, csound is build as beta: https://bugs.archlinux.org/task/63348
+  # it's not allowed to redistribute the scansyn opcodes: https://github.com/csound/csound/issues/1148
   cmake -DCMAKE_INSTALL_PREFIX=/usr \
+        -DCMAKE_BUILD_TYPE='Release' \
+        -DBUILD_SCANSYN_OPCODES=OFF \
         -DJAVA_AWT_LIBRARY="/usr/lib/jvm/java-${_java_major}-openjdk/jre/lib/libawt.so" \
         -DJAVA_JVM_LIBRARY="/usr/lib/jvm/java-${_java_major}-openjdk/jre/lib" \
         -DLUA_LIBRARY=/usr/lib/liblua.so \



More information about the arch-commits mailing list