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

2020-09-20 Thread David Runge via arch-commits
Date: Sunday, September 20, 2020 @ 18:30:02
  Author: dvzrv
Revision: 711124

upgpkg: lib32-fluidsynth 2.1.5-1: Upgrade to 2.1.5.

Modified:
  lib32-fluidsynth/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-09-20 18:24:42 UTC (rev 711123)
+++ PKGBUILD2020-09-20 18:30:02 UTC (rev 711124)
@@ -7,7 +7,7 @@
 
 pkgname=lib32-fluidsynth
 _name=fluidsynth
-pkgver=2.1.4
+pkgver=2.1.5
 pkgrel=1
 pkgdesc='A real-time software synthesizer based on the SoundFont 2 
specifications'
 arch=('x86_64')
@@ -33,8 +33,8 @@
 )
 optdepends=('pulseaudio: PulseAudio sound support')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/${_name}/${_name}/archive/v${pkgver}.tar.gz;)
-sha512sums=('22e8d2f8b144f96a334aff1f7d183b91e6c5418482bd61553028ff571836b0ca13fff89e7e3cc1c2d08e106a430331d179e607d78b00e218baec433b6d140190')
-b2sums=('068a8a1722036a5a409331b1bdcf566cb9a1e7b4a27c78adec51c6d82f7c53cba9178c87013f1a9c0ef62d26b1ba876fad567e4c8bb41b8d478632699876e41d')
+sha512sums=('171ee6b1983ab9636086fb414ae464508f7a9a412cd2c1e7800a19a84d3dff21bbd86d1971f9bb5985e977f808b60e0d0cfbde4551b85fcc4aae4928a1abadbc')
+b2sums=('f5669f49db481ded6d953ee2cdaa8c59bb751f79210d993b69967cca1b71dce12b50fbf258512c144b1578441e78cc5299d96004da5fed44a40fc33858254bc0')
 
 build() {
   cd "${_name}-${pkgver}"


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

2020-07-13 Thread David Runge via arch-commits
Date: Monday, July 13, 2020 @ 18:16:55
  Author: dvzrv
Revision: 663505

upgpkg: lib32-fluidsynth 2.1.4-1: Upgrading to 2.1.4.

Removing dependency on libdbus-1.0.so (as it is not required).

Modified:
  lib32-fluidsynth/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-07-13 18:04:36 UTC (rev 663504)
+++ PKGBUILD2020-07-13 18:16:55 UTC (rev 663505)
@@ -7,7 +7,7 @@
 
 pkgname=lib32-fluidsynth
 _name=fluidsynth
-pkgver=2.1.3
+pkgver=2.1.4
 pkgrel=1
 pkgdesc='A real-time software synthesizer based on the SoundFont 2 
specifications'
 arch=('x86_64')
@@ -33,17 +33,16 @@
 )
 optdepends=('pulseaudio: PulseAudio sound support')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/${_name}/${_name}/archive/v${pkgver}.tar.gz;)
-sha256sums=('645fbfd7c04543c6d3bf415eab8250527813b8dc8e6d6972dbcc8cb525e1d409')
+sha512sums=('22e8d2f8b144f96a334aff1f7d183b91e6c5418482bd61553028ff571836b0ca13fff89e7e3cc1c2d08e106a430331d179e607d78b00e218baec433b6d140190')
+b2sums=('068a8a1722036a5a409331b1bdcf566cb9a1e7b4a27c78adec51c6d82f7c53cba9178c87013f1a9c0ef62d26b1ba876fad567e4c8bb41b8d478632699876e41d')
 
 build() {
   cd "${_name}-${pkgver}"
-  export CFLAGS+=" ${CPPFLAGS}"
-  export CXXFLAGS+=" ${CPPFLAGS}"
   export CC='gcc -m32'
   export PKG_CONFIG_PATH='/usr/lib32/pkgconfig'
   cmake -DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE='None' \
 -DFLUID_DAEMON_ENV_FILE=/etc/conf.d/fluidsynth \
--DCMAKE_BUILD_TYPE='None' \
 -DLIB_SUFFIX=32 \
 -Denable-ladspa=ON \
 -Denable-portaudio=ON \
@@ -59,7 +58,7 @@
 }
 
 package() {
-  depends+=('libasound.so' 'libdbus-1.so' 'libglib-2.0.so' 'libgmodule-2.0.so'
+  depends+=('libasound.so' 'libglib-2.0.so' 'libgmodule-2.0.so'
   'libgobject-2.0.so' 'libinstpatch-1.0.so' 'libjack.so' 'libportaudio.so'
   'libsndfile.so')
   cd "${_name}-${pkgver}"


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

2020-05-26 Thread David Runge via arch-commits
Date: Tuesday, May 26, 2020 @ 19:21:36
  Author: dvzrv
Revision: 635225

upgpkg: lib32-fluidsynth 2.1.3-1: Upgrading to 2.1.3.

Pinning the required fluidsynth version.
Applying latest cmake packaging guidelines.

Modified:
  lib32-fluidsynth/trunk/PKGBUILD

--+
 PKGBUILD |   18 ++
 1 file changed, 10 insertions(+), 8 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-05-26 19:21:29 UTC (rev 635224)
+++ PKGBUILD2020-05-26 19:21:36 UTC (rev 635225)
@@ -7,7 +7,7 @@
 
 pkgname=lib32-fluidsynth
 _name=fluidsynth
-pkgver=2.1.2
+pkgver=2.1.3
 pkgrel=1
 pkgdesc='A real-time software synthesizer based on the SoundFont 2 
specifications'
 arch=('x86_64')
@@ -14,7 +14,7 @@
 url="https://www.fluidsynth.org/;
 license=('LGPL2.1')
 depends=(
-  fluidsynth
+  fluidsynth=${pkgver}
   lib32-glibc
   lib32-libpulse
   lib32-readline
@@ -33,21 +33,23 @@
 )
 optdepends=('pulseaudio: PulseAudio sound support')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/${_name}/${_name}/archive/v${pkgver}.tar.gz;)
-sha256sums=('9206d83b8d2f7e1ec259ee01e943071de67e419aabe142b51312f8edb39c5503')
+sha256sums=('645fbfd7c04543c6d3bf415eab8250527813b8dc8e6d6972dbcc8cb525e1d409')
 
 build() {
   cd "${_name}-${pkgver}"
-
+  export CFLAGS+=" ${CPPFLAGS}"
+  export CXXFLAGS+=" ${CPPFLAGS}"
   export CC='gcc -m32'
   export PKG_CONFIG_PATH='/usr/lib32/pkgconfig'
-
-  cmake -DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
+  cmake -DCMAKE_INSTALL_PREFIX=/usr \
 -DFLUID_DAEMON_ENV_FILE=/etc/conf.d/fluidsynth \
+-DCMAKE_BUILD_TYPE='None' \
 -DLIB_SUFFIX=32 \
 -Denable-ladspa=ON \
 -Denable-portaudio=ON \
--B build
+-Wno-dev \
+-B build \
+-S .
   make -C build VERBOSE=1
 }
 


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

2020-04-06 Thread David Runge via arch-commits
Date: Monday, April 6, 2020 @ 21:45:37
  Author: dvzrv
Revision: 612163

upgpkg: lib32-fluidsynth 2.1.2-1: Upgrading to 2.1.2.

Moving lib32-{dbus,glib2,jack,portaudio} to makedepends and adding their 
respective
sodeps in package().

Modified:
  lib32-fluidsynth/trunk/PKGBUILD

--+
 PKGBUILD |   16 +---
 1 file changed, 9 insertions(+), 7 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-04-06 21:43:57 UTC (rev 612162)
+++ PKGBUILD2020-04-06 21:45:37 UTC (rev 612163)
@@ -7,7 +7,7 @@
 
 pkgname=lib32-fluidsynth
 _name=fluidsynth
-pkgver=2.1.1
+pkgver=2.1.2
 pkgrel=1
 pkgdesc='A real-time software synthesizer based on the SoundFont 2 
specifications'
 arch=('x86_64')
@@ -15,12 +15,8 @@
 license=('LGPL2.1')
 depends=(
   fluidsynth
-  lib32-glib2
   lib32-glibc
-  lib32-jack
-  lib32-dbus
   lib32-libpulse
-  lib32-portaudio
   lib32-readline
   lib32-sdl2
 )
@@ -27,13 +23,17 @@
 makedepends=(
   cmake
   lib32-alsa-lib
+  lib32-dbus
+  lib32-glib2
+  lib32-jack
   lib32-ladspa
   lib32-libinstpatch
   lib32-libsndfile
+  lib32-portaudio
 )
 optdepends=('pulseaudio: PulseAudio sound support')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/${_name}/${_name}/archive/v${pkgver}.tar.gz;)
-sha256sums=('966d0393591b505d694e51cbf653387007144e9ae0b8705d82ec7d943d31d348')
+sha256sums=('9206d83b8d2f7e1ec259ee01e943071de67e419aabe142b51312f8edb39c5503')
 
 build() {
   cd "${_name}-${pkgver}"
@@ -57,7 +57,9 @@
 }
 
 package() {
-  depends+=('libasound.so' 'libinstpatch-1.0.so' 'libsndfile.so')
+  depends+=('libasound.so' 'libdbus-1.so' 'libglib-2.0.so' 'libgmodule-2.0.so'
+  'libgobject-2.0.so' 'libinstpatch-1.0.so' 'libjack.so' 'libportaudio.so'
+  'libsndfile.so')
   cd "${_name}-${pkgver}"
 
   make -C build DESTDIR="${pkgdir}" install


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

2020-02-20 Thread David Runge via arch-commits
Date: Thursday, February 20, 2020 @ 15:33:25
  Author: dvzrv
Revision: 577278

upgpkg: lib32-fluidsynth 2.1.1-1: Upgrading to 2.1.1. Adding libasound.so, 
libinstpatch-1.0.so and libsndfile.so to depends (sodeps in package()) and 
adding the respective makedepends.

Modified:
  lib32-fluidsynth/trunk/PKGBUILD

--+
 PKGBUILD |   10 ++
 1 file changed, 6 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-02-20 15:13:17 UTC (rev 577277)
+++ PKGBUILD2020-02-20 15:33:25 UTC (rev 577278)
@@ -7,7 +7,7 @@
 
 pkgname=lib32-fluidsynth
 _name=fluidsynth
-pkgver=2.1.0
+pkgver=2.1.1
 pkgrel=1
 pkgdesc='A real-time software synthesizer based on the SoundFont 2 
specifications'
 arch=('x86_64')
@@ -15,13 +15,11 @@
 license=('LGPL2.1')
 depends=(
   fluidsynth
-  lib32-alsa-lib
   lib32-glib2
   lib32-glibc
   lib32-jack
   lib32-dbus
   lib32-libpulse
-  lib32-libsndfile
   lib32-portaudio
   lib32-readline
   lib32-sdl2
@@ -28,11 +26,14 @@
 )
 makedepends=(
   cmake
+  lib32-alsa-lib
   lib32-ladspa
+  lib32-libinstpatch
+  lib32-libsndfile
 )
 optdepends=('pulseaudio: PulseAudio sound support')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/${_name}/${_name}/archive/v${pkgver}.tar.gz;)
-sha256sums=('526addc6d8445035840d3af7282d3ba89567df209d28e183da04a1a877da2da3')
+sha256sums=('966d0393591b505d694e51cbf653387007144e9ae0b8705d82ec7d943d31d348')
 
 build() {
   cd "${_name}-${pkgver}"
@@ -56,6 +57,7 @@
 }
 
 package() {
+  depends+=('libasound.so' 'libinstpatch-1.0.so' 'libsndfile.so')
   cd "${_name}-${pkgver}"
 
   make -C build DESTDIR="${pkgdir}" install


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

2019-12-01 Thread David Runge via arch-commits
Date: Sunday, December 1, 2019 @ 15:41:49
  Author: dvzrv
Revision: 534633

upgpkg: lib32-fluidsynth 2.1.0-1

Upgrading to 2.1.0. Adding lib32-sdl2 to depends. Simplifying cmake setup 
further.

Modified:
  lib32-fluidsynth/trunk/PKGBUILD

--+
 PKGBUILD |   11 +++
 1 file changed, 3 insertions(+), 8 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-12-01 11:57:12 UTC (rev 534632)
+++ PKGBUILD2019-12-01 15:41:49 UTC (rev 534633)
@@ -7,7 +7,7 @@
 
 pkgname=lib32-fluidsynth
 _name=fluidsynth
-pkgver=2.0.9
+pkgver=2.1.0
 pkgrel=1
 pkgdesc='A real-time software synthesizer based on the SoundFont 2 
specifications'
 arch=('x86_64')
@@ -24,6 +24,7 @@
   lib32-libsndfile
   lib32-portaudio
   lib32-readline
+  lib32-sdl2
 )
 makedepends=(
   cmake
@@ -31,13 +32,8 @@
 )
 optdepends=('pulseaudio: PulseAudio sound support')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/${_name}/${_name}/archive/v${pkgver}.tar.gz;)
-sha256sums=('bfe82ccf1bf00ff5cfc18e2d9d1e5d95c6bd169a76a2dec14898d1ee0e0fac8a')
+sha256sums=('526addc6d8445035840d3af7282d3ba89567df209d28e183da04a1a877da2da3')
 
-prepare() {
-  cd "${_name}-${pkgver}"
-  mkdir -vp build
-}
-
 build() {
   cd "${_name}-${pkgver}"
 
@@ -65,5 +61,4 @@
   make -C build DESTDIR="${pkgdir}" install
   rm -rf "${pkgdir}"/usr/{include,share,bin}
 }
-
 # vim: ts=2 sw=2 et:


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

2019-11-14 Thread David Runge via arch-commits
Date: Thursday, November 14, 2019 @ 15:48:28
  Author: dvzrv
Revision: 528693

upgpkg: lib32-fluidsynth 2.0.9-1

Upgrading to 2.0.9.

Modified:
  lib32-fluidsynth/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-11-14 15:46:34 UTC (rev 528692)
+++ PKGBUILD2019-11-14 15:48:28 UTC (rev 528693)
@@ -7,7 +7,7 @@
 
 pkgname=lib32-fluidsynth
 _name=fluidsynth
-pkgver=2.0.8
+pkgver=2.0.9
 pkgrel=1
 pkgdesc='A real-time software synthesizer based on the SoundFont 2 
specifications'
 arch=('x86_64')
@@ -31,7 +31,7 @@
 )
 optdepends=('pulseaudio: PulseAudio sound support')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/${_name}/${_name}/archive/v${pkgver}.tar.gz;)
-sha256sums=('0c37e72db31d1b35e587b94b7163d68444cffaa9e7fe8a293d79957620bff117')
+sha256sums=('bfe82ccf1bf00ff5cfc18e2d9d1e5d95c6bd169a76a2dec14898d1ee0e0fac8a')
 
 prepare() {
   cd "${_name}-${pkgver}"


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

2019-10-28 Thread David Runge via arch-commits
Date: Monday, October 28, 2019 @ 21:27:23
  Author: dvzrv
Revision: 520866

upgpkg: lib32-fluidsynth 2.0.8-1

Upgrading to 2.0.8. Updating contributor info. Simplifying cmake/ make calls by 
providing the build directory via flag.

Modified:
  lib32-fluidsynth/trunk/PKGBUILD

--+
 PKGBUILD |   36 +---
 1 file changed, 17 insertions(+), 19 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-10-28 18:50:27 UTC (rev 520865)
+++ PKGBUILD2019-10-28 21:27:23 UTC (rev 520866)
@@ -1,5 +1,5 @@
 # Maintainer: Maxime Gauduin 
-# Contributor: David Runge 
+# Contributor: David Runge 
 # Contributor: carstene1ns 
 # Contributor: Giuseppe Calà  
 # Contributor: Ray Rashif 
@@ -7,7 +7,7 @@
 
 pkgname=lib32-fluidsynth
 _name=fluidsynth
-pkgver=2.0.7
+pkgver=2.0.8
 pkgrel=1
 pkgdesc='A real-time software synthesizer based on the SoundFont 2 
specifications'
 arch=('x86_64')
@@ -31,40 +31,38 @@
 )
 optdepends=('pulseaudio: PulseAudio sound support')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/${_name}/${_name}/archive/v${pkgver}.tar.gz;)
-sha256sums=('b68876d24c7fb34575ffa389bcfe8e61a24f1cf1da8ec6c3b2053efde98d0320')
+sha256sums=('0c37e72db31d1b35e587b94b7163d68444cffaa9e7fe8a293d79957620bff117')
 
 prepare() {
   cd "${_name}-${pkgver}"
-  # out-of-tree build
-  mkdir build
+  mkdir -vp build
 }
 
 build() {
-  cd "${_name}-${pkgver}/build"
+  cd "${_name}-${pkgver}"
 
   export CC='gcc -m32'
   export PKG_CONFIG_PATH='/usr/lib32/pkgconfig'
 
-  cmake .. \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DFLUID_DAEMON_ENV_FILE=/etc/conf.d/fluidsynth \
--DLIB_SUFFIX=32 \
--Denable-ladspa=ON \
--Denable-lash=OFF \
--Denable-portaudio=ON
-  make
+  cmake -DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DFLUID_DAEMON_ENV_FILE=/etc/conf.d/fluidsynth \
+-DLIB_SUFFIX=32 \
+-Denable-ladspa=ON \
+-Denable-portaudio=ON \
+-B build
+  make -C build VERBOSE=1
 }
 
 check() {
-  cd "${_name}-${pkgver}/build"
-  make -k check
+  cd "${_name}-${pkgver}"
+  make -C build -k check
 }
 
 package() {
-  cd "${_name}-${pkgver}/build"
+  cd "${_name}-${pkgver}"
 
-  make DESTDIR="${pkgdir}" install
+  make -C build DESTDIR="${pkgdir}" install
   rm -rf "${pkgdir}"/usr/{include,share,bin}
 }
 


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

2019-09-29 Thread David Runge via arch-commits
Date: Sunday, September 29, 2019 @ 13:34:29
  Author: dvzrv
Revision: 512072

upgpkg: lib32-fluidsynth 2.0.7-1

Upgrading to 2.0.7.

Modified:
  lib32-fluidsynth/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-09-29 13:12:11 UTC (rev 512071)
+++ PKGBUILD2019-09-29 13:34:29 UTC (rev 512072)
@@ -7,12 +7,12 @@
 
 pkgname=lib32-fluidsynth
 _name=fluidsynth
-pkgver=2.0.6
+pkgver=2.0.7
 pkgrel=1
 pkgdesc='A real-time software synthesizer based on the SoundFont 2 
specifications'
 arch=('x86_64')
 url="https://www.fluidsynth.org/;
-license=('LGPL')
+license=('LGPL2.1')
 depends=(
   fluidsynth
   lib32-alsa-lib
@@ -31,7 +31,7 @@
 )
 optdepends=('pulseaudio: PulseAudio sound support')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/${_name}/${_name}/archive/v${pkgver}.tar.gz;)
-sha256sums=('e97e63c1045e102465f1aa848f9d712c5528c58685b8d40062e4aaf6af7edb75')
+sha256sums=('b68876d24c7fb34575ffa389bcfe8e61a24f1cf1da8ec6c3b2053efde98d0320')
 
 prepare() {
   cd "${_name}-${pkgver}"


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

2019-08-20 Thread Maxime Gauduin via arch-commits
Date: Tuesday, August 20, 2019 @ 16:09:12
  Author: alucryd
Revision: 500312

upgpkg: lib32-fluidsynth 2.0.6-1

Modified:
  lib32-fluidsynth/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-08-20 14:59:24 UTC (rev 500311)
+++ PKGBUILD2019-08-20 16:09:12 UTC (rev 500312)
@@ -7,7 +7,7 @@
 
 pkgname=lib32-fluidsynth
 _name=fluidsynth
-pkgver=2.0.5
+pkgver=2.0.6
 pkgrel=1
 pkgdesc='A real-time software synthesizer based on the SoundFont 2 
specifications'
 arch=('x86_64')
@@ -31,7 +31,7 @@
 )
 optdepends=('pulseaudio: PulseAudio sound support')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/${_name}/${_name}/archive/v${pkgver}.tar.gz;)
-sha256sums=('69b244512883491e7e66b4d0151c61a0d6d867d4d2828c732563be0f78abcc51')
+sha256sums=('e97e63c1045e102465f1aa848f9d712c5528c58685b8d40062e4aaf6af7edb75')
 
 prepare() {
   cd "${_name}-${pkgver}"


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

2019-04-23 Thread David Runge via arch-commits
Date: Tuesday, April 23, 2019 @ 09:00:52
  Author: dvzrv
Revision: 453039

upgpkg: lib32-fluidsynth 2.0.5-1

Upgrading to 2.0.5. Using tarball as source. Adding check(). Minor fixes.

Modified:
  lib32-fluidsynth/trunk/PKGBUILD

--+
 PKGBUILD |   30 +-
 1 file changed, 17 insertions(+), 13 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-04-23 08:43:10 UTC (rev 453038)
+++ PKGBUILD2019-04-23 09:00:52 UTC (rev 453039)
@@ -6,12 +6,13 @@
 # Contributor: damir 
 
 pkgname=lib32-fluidsynth
-pkgver=2.0.4
+_name=fluidsynth
+pkgver=2.0.5
 pkgrel=1
 pkgdesc='A real-time software synthesizer based on the SoundFont 2 
specifications'
-arch=(x86_64)
-url=http://www.fluidsynth.org/
-license=(LGPL)
+arch=('x86_64')
+url="https://www.fluidsynth.org/;
+license=('LGPL')
 depends=(
   fluidsynth
   lib32-alsa-lib
@@ -26,27 +27,25 @@
 )
 makedepends=(
   cmake
-  git
   lib32-ladspa
 )
 optdepends=('pulseaudio: PulseAudio sound support')
-source=(git+https://github.com/FluidSynth/fluidsynth.git#tag=v${pkgver})
-sha256sums=(SKIP)
+source=("$pkgname-$pkgver.tar.gz::https://github.com/${_name}/${_name}/archive/v${pkgver}.tar.gz;)
+sha256sums=('69b244512883491e7e66b4d0151c61a0d6d867d4d2828c732563be0f78abcc51')
 
 prepare() {
-  if [[ -d build ]]; then
-rm -rf build
-  fi
+  cd "${_name}-${pkgver}"
+  # out-of-tree build
   mkdir build
 }
 
 build() {
-  cd build
+  cd "${_name}-${pkgver}/build"
 
   export CC='gcc -m32'
   export PKG_CONFIG_PATH='/usr/lib32/pkgconfig'
 
-  cmake ../fluidsynth \
+  cmake .. \
 -DCMAKE_BUILD_TYPE=Release \
 -DCMAKE_INSTALL_PREFIX=/usr \
 -DFLUID_DAEMON_ENV_FILE=/etc/conf.d/fluidsynth \
@@ -57,8 +56,13 @@
   make
 }
 
+check() {
+  cd "${_name}-${pkgver}/build"
+  make -k check
+}
+
 package() {
-  cd build
+  cd "${_name}-${pkgver}/build"
 
   make DESTDIR="${pkgdir}" install
   rm -rf "${pkgdir}"/usr/{include,share,bin}


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

2019-03-01 Thread Maxime Gauduin via arch-commits
Date: Friday, March 1, 2019 @ 13:14:42
  Author: alucryd
Revision: 437258

upgpkg: lib32-fluidsynth 2.0.4-1

Modified:
  lib32-fluidsynth/trunk/PKGBUILD

--+
 PKGBUILD |   62 +
 1 file changed, 38 insertions(+), 24 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-03-01 13:04:55 UTC (rev 437257)
+++ PKGBUILD2019-03-01 13:14:42 UTC (rev 437258)
@@ -5,49 +5,63 @@
 # Contributor: Ray Rashif 
 # Contributor: damir 
 
-_name=fluidsynth
 pkgname=lib32-fluidsynth
-pkgver=2.0.3
+pkgver=2.0.4
 pkgrel=1
 pkgdesc='A real-time software synthesizer based on the SoundFont 2 
specifications'
-arch=('x86_64')
-url='http://www.fluidsynth.org/'
-license=('LGPL')
-depends=('fluidsynth' 'lib32-alsa-lib' 'lib32-glib2' 'lib32-glibc' 'lib32-jack'
- 'lib32-dbus' 'lib32-libpulse' 'lib32-libsndfile' 'lib32-portaudio'
- 'lib32-readline')
-makedepends=('cmake' 'git' 'lib32-ladspa')
+arch=(x86_64)
+url=http://www.fluidsynth.org/
+license=(LGPL)
+depends=(
+  fluidsynth
+  lib32-alsa-lib
+  lib32-glib2
+  lib32-glibc
+  lib32-jack
+  lib32-dbus
+  lib32-libpulse
+  lib32-libsndfile
+  lib32-portaudio
+  lib32-readline
+)
+makedepends=(
+  cmake
+  git
+  lib32-ladspa
+)
 optdepends=('pulseaudio: PulseAudio sound support')
-source=("$_name-$pkgver.tar.gz::https://github.com/${_name}/${_name}/archive/v$pkgver.tar.gz;)
-sha512sums=('4a557c56257dc38394468e9985b811b1e56aa521b01e9ecf76a76483e6f7e94f6c905b3174203f035e972b092f09c2d099e19a3d39ac9c6ede5ac27bff93ecd3')
+source=(git+https://github.com/FluidSynth/fluidsynth.git#tag=v${pkgver})
+sha256sums=(SKIP)
 
 prepare() {
-  cd "${_name}-${pkgver}"
-  # out-of-tree build
+  if [[ -d build ]]; then
+rm -rf build
+  fi
   mkdir build
 }
 
 build() {
-  cd "${_name}-${pkgver}/build"
+  cd build
 
   export CC='gcc -m32'
   export PKG_CONFIG_PATH='/usr/lib32/pkgconfig'
 
-  cmake .. \
--DCMAKE_BUILD_TYPE='Release' \
--DCMAKE_INSTALL_PREFIX='/usr' \
--DFLUID_DAEMON_ENV_FILE='/etc/conf.d/fluidsynth' \
--DLIB_SUFFIX='32' \
--Denable-ladspa='ON' \
--Denable-lash='OFF' \
--Denable-portaudio='ON'
+  cmake ../fluidsynth \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DFLUID_DAEMON_ENV_FILE=/etc/conf.d/fluidsynth \
+-DLIB_SUFFIX=32 \
+-Denable-ladspa=ON \
+-Denable-lash=OFF \
+-Denable-portaudio=ON
   make
 }
 
 package() {
-  cd "${_name}-${pkgver}/build"
+  cd build
+
   make DESTDIR="${pkgdir}" install
-  rm -rfv "${pkgdir}"/usr/{include,share,bin}
+  rm -rf "${pkgdir}"/usr/{include,share,bin}
 }
 
 # vim: ts=2 sw=2 et:


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

2019-02-17 Thread David Runge via arch-commits
Date: Sunday, February 17, 2019 @ 08:58:29
  Author: dvzrv
Revision: 434018

upgpkg: lib32-fluidsynth 2.0.3-1

Rebuilding against fluidsynth 2.0.3.

Modified:
  lib32-fluidsynth/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-02-17 08:57:22 UTC (rev 434017)
+++ PKGBUILD2019-02-17 08:58:29 UTC (rev 434018)
@@ -8,7 +8,7 @@
 _name=fluidsynth
 pkgname=lib32-fluidsynth
 pkgver=2.0.3
-pkgrel=2
+pkgrel=1
 pkgdesc='A real-time software synthesizer based on the SoundFont 2 
specifications'
 arch=('x86_64')
 url='http://www.fluidsynth.org/'


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

2019-02-17 Thread David Runge via arch-commits
Date: Sunday, February 17, 2019 @ 08:57:22
  Author: dvzrv
Revision: 434017

upgpkg: lib32-fluidsynth 2.0.3-2

Rebuilding against fluidsynth 2.0.3.

Modified:
  lib32-fluidsynth/trunk/PKGBUILD

--+
 PKGBUILD |   22 --
 1 file changed, 12 insertions(+), 10 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-02-17 06:46:29 UTC (rev 434016)
+++ PKGBUILD2019-02-17 08:57:22 UTC (rev 434017)
@@ -1,11 +1,13 @@
 # Maintainer: Maxime Gauduin 
+# Contributor: David Runge 
 # Contributor: carstene1ns 
 # Contributor: Giuseppe Calà  
 # Contributor: Ray Rashif 
 # Contributor: damir 
 
+_name=fluidsynth
 pkgname=lib32-fluidsynth
-pkgver=2.0.0
+pkgver=2.0.3
 pkgrel=2
 pkgdesc='A real-time software synthesizer based on the SoundFont 2 
specifications'
 arch=('x86_64')
@@ -16,23 +18,22 @@
  'lib32-readline')
 makedepends=('cmake' 'git' 'lib32-ladspa')
 optdepends=('pulseaudio: PulseAudio sound support')
-source=("git+https://github.com/FluidSynth/fluidsynth.git#tag=v${pkgver};)
-sha256sums=('SKIP')
+source=("$_name-$pkgver.tar.gz::https://github.com/${_name}/${_name}/archive/v$pkgver.tar.gz;)
+sha512sums=('4a557c56257dc38394468e9985b811b1e56aa521b01e9ecf76a76483e6f7e94f6c905b3174203f035e972b092f09c2d099e19a3d39ac9c6ede5ac27bff93ecd3')
 
 prepare() {
-  if [[ -d build ]]; then
-rm -rf build
-  fi
+  cd "${_name}-${pkgver}"
+  # out-of-tree build
   mkdir build
 }
 
 build() {
-  cd build
+  cd "${_name}-${pkgver}/build"
 
   export CC='gcc -m32'
   export PKG_CONFIG_PATH='/usr/lib32/pkgconfig'
 
-  cmake ../fluidsynth \
+  cmake .. \
 -DCMAKE_BUILD_TYPE='Release' \
 -DCMAKE_INSTALL_PREFIX='/usr' \
 -DFLUID_DAEMON_ENV_FILE='/etc/conf.d/fluidsynth' \
@@ -44,8 +45,9 @@
 }
 
 package() {
-  make DESTDIR="${pkgdir}" -C build install
-  rm -rf "${pkgdir}"/usr/{include,share,bin}
+  cd "${_name}-${pkgver}/build"
+  make DESTDIR="${pkgdir}" install
+  rm -rfv "${pkgdir}"/usr/{include,share,bin}
 }
 
 # vim: ts=2 sw=2 et:


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

2019-01-11 Thread Felix Yan via arch-commits
Date: Friday, January 11, 2019 @ 08:23:30
  Author: felixonmars
Revision: 422344

Readline 8.0 rebuild

Modified:
  lib32-fluidsynth/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-01-11 08:23:30 UTC (rev 422343)
+++ PKGBUILD2019-01-11 08:23:30 UTC (rev 422344)
@@ -6,7 +6,7 @@
 
 pkgname=lib32-fluidsynth
 pkgver=2.0.0
-pkgrel=1
+pkgrel=2
 pkgdesc='A real-time software synthesizer based on the SoundFont 2 
specifications'
 arch=('x86_64')
 url='http://www.fluidsynth.org/'


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

2018-10-01 Thread Maxime Gauduin via arch-commits
Date: Monday, October 1, 2018 @ 09:22:52
  Author: alucryd
Revision: 388736

upgpkg: lib32-fluidsynth 2.0.0-1

Modified:
  lib32-fluidsynth/trunk/PKGBUILD

--+
 PKGBUILD |   15 ++-
 1 file changed, 6 insertions(+), 9 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-10-01 09:05:55 UTC (rev 388735)
+++ PKGBUILD2018-10-01 09:22:52 UTC (rev 388736)
@@ -5,7 +5,7 @@
 # Contributor: damir 
 
 pkgname=lib32-fluidsynth
-pkgver=1.1.11
+pkgver=2.0.0
 pkgrel=1
 pkgdesc='A real-time software synthesizer based on the SoundFont 2 
specifications'
 arch=('x86_64')
@@ -14,10 +14,10 @@
 depends=('fluidsynth' 'lib32-alsa-lib' 'lib32-glib2' 'lib32-glibc' 'lib32-jack'
  'lib32-dbus' 'lib32-libpulse' 'lib32-libsndfile' 'lib32-portaudio'
  'lib32-readline')
-makedepends=('cmake' 'gcc-multilib' 'lib32-ladspa')
+makedepends=('cmake' 'git' 'lib32-ladspa')
 optdepends=('pulseaudio: PulseAudio sound support')
-source=("fluidsynth-${pkgver}.tar.gz::https://github.com/FluidSynth/fluidsynth/archive/v${pkgver}.tar.gz;)
-sha256sums=('da8878ff374d12392eecf87e96bad8711b8e76a154c25a571dd8614d1af80de8')
+source=("git+https://github.com/FluidSynth/fluidsynth.git#tag=v${pkgver};)
+sha256sums=('SKIP')
 
 prepare() {
   if [[ -d build ]]; then
@@ -30,10 +30,9 @@
   cd build
 
   export CC='gcc -m32'
-  export CXX='g++ -m32'
   export PKG_CONFIG_PATH='/usr/lib32/pkgconfig'
 
-  cmake ../fluidsynth-${pkgver} \
+  cmake ../fluidsynth \
 -DCMAKE_BUILD_TYPE='Release' \
 -DCMAKE_INSTALL_PREFIX='/usr' \
 -DFLUID_DAEMON_ENV_FILE='/etc/conf.d/fluidsynth' \
@@ -45,9 +44,7 @@
 }
 
 package() {
-  cd build
-
-  make DESTDIR="${pkgdir}" install
+  make DESTDIR="${pkgdir}" -C build install
   rm -rf "${pkgdir}"/usr/{include,share,bin}
 }
 


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

2018-05-29 Thread Maxime Gauduin via arch-commits
Date: Tuesday, May 29, 2018 @ 08:58:20
  Author: alucryd
Revision: 333148

upgpkg: lib32-fluidsynth 1.1.11-1

Modified:
  lib32-fluidsynth/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-05-29 08:56:27 UTC (rev 333147)
+++ PKGBUILD2018-05-29 08:58:20 UTC (rev 333148)
@@ -6,7 +6,7 @@
 # Contributor: damir 
 
 pkgname=lib32-fluidsynth
-pkgver=1.1.10
+pkgver=1.1.11
 pkgrel=1
 pkgdesc='A real-time software synthesizer based on the SoundFont 2 
specifications'
 arch=('x86_64')
@@ -18,7 +18,7 @@
 makedepends=('cmake' 'gcc-multilib' 'lib32-ladspa')
 optdepends=('pulseaudio: PulseAudio sound support')
 
source=("fluidsynth-${pkgver}.tar.gz::https://github.com/FluidSynth/fluidsynth/archive/v${pkgver}.tar.gz;)
-sha256sums=('b74801d0fdd726c4555149bf075b76dc4074658ec0a8f7a3753f4a64589e5300')
+sha256sums=('da8878ff374d12392eecf87e96bad8711b8e76a154c25a571dd8614d1af80de8')
 
 prepare() {
   if [[ -d build ]]; then


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

2018-03-15 Thread Maxime Gauduin via arch-commits
Date: Thursday, March 15, 2018 @ 13:04:28
  Author: alucryd
Revision: 308488

upgpkg: lib32-fluidsynth 1.1.10-1

Modified:
  lib32-fluidsynth/trunk/PKGBUILD

--+
 PKGBUILD |   20 +++-
 1 file changed, 11 insertions(+), 9 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-03-15 12:24:08 UTC (rev 308487)
+++ PKGBUILD2018-03-15 13:04:28 UTC (rev 308488)
@@ -6,7 +6,7 @@
 # Contributor: damir 
 
 pkgname=lib32-fluidsynth
-pkgver=1.1.9
+pkgver=1.1.10
 pkgrel=1
 pkgdesc='A real-time software synthesizer based on the SoundFont 2 
specifications'
 arch=('x86_64')
@@ -13,15 +13,14 @@
 url='http://www.fluidsynth.org/'
 license=('LGPL')
 depends=('fluidsynth' 'lib32-alsa-lib' 'lib32-glib2' 'lib32-glibc' 'lib32-jack'
- 'lib32-dbus' 'lib32-libpulse' 'lib32-libsndfile' 'lib32-readline')
+ 'lib32-dbus' 'lib32-libpulse' 'lib32-libsndfile' 'lib32-portaudio'
+ 'lib32-readline')
 makedepends=('cmake' 'gcc-multilib' 'lib32-ladspa')
 optdepends=('pulseaudio: PulseAudio sound support')
 
source=("fluidsynth-${pkgver}.tar.gz::https://github.com/FluidSynth/fluidsynth/archive/v${pkgver}.tar.gz;)
-sha256sums=('dd6321e13a7c875ef3032644bd3197e84b3d24928e2379bc8066b7cace7bd410')
+sha256sums=('b74801d0fdd726c4555149bf075b76dc4074658ec0a8f7a3753f4a64589e5300')
 
 prepare() {
-  cd fluidsynth-$pkgver
-
   if [[ -d build ]]; then
 rm -rf build
   fi
@@ -29,22 +28,25 @@
 }
 
 build() {
-  cd fluidsynth-$pkgver/build
+  cd build
 
   export CC='gcc -m32'
   export CXX='g++ -m32'
   export PKG_CONFIG_PATH='/usr/lib32/pkgconfig'
 
-  cmake .. \
+  cmake ../fluidsynth-${pkgver} \
 -DCMAKE_BUILD_TYPE='Release' \
 -DCMAKE_INSTALL_PREFIX='/usr' \
+-DFLUID_DAEMON_ENV_FILE='/etc/conf.d/fluidsynth' \
 -DLIB_SUFFIX='32' \
--Denable-ladspa='ON'
+-Denable-ladspa='ON' \
+-Denable-lash='OFF' \
+-Denable-portaudio='ON'
   make
 }
 
 package() {
-  cd fluidsynth-$pkgver/build
+  cd build
 
   make DESTDIR="${pkgdir}" install
   rm -rf "${pkgdir}"/usr/{include,share,bin}


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

2018-02-06 Thread Maxime Gauduin via arch-commits
Date: Tuesday, February 6, 2018 @ 22:32:33
  Author: alucryd
Revision: 289658

upgpkg: lib32-fluidsynth 1.1.9-1

Modified:
  lib32-fluidsynth/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-02-06 22:05:30 UTC (rev 289657)
+++ PKGBUILD2018-02-06 22:32:33 UTC (rev 289658)
@@ -6,8 +6,8 @@
 # Contributor: damir 
 
 pkgname=lib32-fluidsynth
-pkgver=1.1.6
-pkgrel=3
+pkgver=1.1.9
+pkgrel=1
 pkgdesc='A real-time software synthesizer based on the SoundFont 2 
specifications'
 arch=('x86_64')
 url='http://www.fluidsynth.org/'
@@ -16,8 +16,8 @@
  'lib32-dbus' 'lib32-libpulse' 'lib32-libsndfile' 'lib32-readline')
 makedepends=('cmake' 'gcc-multilib' 'lib32-ladspa')
 optdepends=('pulseaudio: PulseAudio sound support')
-source=("http://downloads.sourceforge.net/fluidsynth/fluidsynth-$pkgver.tar.gz;)
-sha256sums=('50853391d9ebeda9b4db787efb23f98b1e26b7296dd2bb5d0d96b5bccee2171c')
+source=("fluidsynth-${pkgver}.tar.gz::https://github.com/FluidSynth/fluidsynth/archive/v${pkgver}.tar.gz;)
+sha256sums=('dd6321e13a7c875ef3032644bd3197e84b3d24928e2379bc8066b7cace7bd410')
 
 prepare() {
   cd fluidsynth-$pkgver


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

2016-11-07 Thread Bartłomiej Piotrowski
Date: Monday, November 7, 2016 @ 19:41:24
  Author: bpiotrowski
Revision: 194970

readline 7.0 rebuild

Modified:
  lib32-fluidsynth/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-11-07 19:36:03 UTC (rev 194969)
+++ PKGBUILD2016-11-07 19:41:24 UTC (rev 194970)
@@ -7,7 +7,7 @@
 
 pkgname=lib32-fluidsynth
 pkgver=1.1.6
-pkgrel=2
+pkgrel=3
 pkgdesc='A real-time software synthesizer based on the SoundFont 2 
specifications'
 arch=('x86_64')
 url='http://www.fluidsynth.org/'


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

2016-10-23 Thread Laurent Carlier
Date: Sunday, October 23, 2016 @ 12:06:16
  Author: lcarlier
Revision: 193039

upgpkg: lib32-fluidsynth 1.1.6-2

update dependency from lib32-libdbus to lib32-dbus

Modified:
  lib32-fluidsynth/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-10-23 12:01:34 UTC (rev 193038)
+++ PKGBUILD2016-10-23 12:06:16 UTC (rev 193039)
@@ -7,13 +7,13 @@
 
 pkgname=lib32-fluidsynth
 pkgver=1.1.6
-pkgrel=1
+pkgrel=2
 pkgdesc='A real-time software synthesizer based on the SoundFont 2 
specifications'
 arch=('x86_64')
 url='http://www.fluidsynth.org/'
 license=('LGPL')
 depends=('fluidsynth' 'lib32-alsa-lib' 'lib32-glib2' 'lib32-glibc' 'lib32-jack'
- 'lib32-libdbus' 'lib32-libpulse' 'lib32-libsndfile' 'lib32-readline')
+ 'lib32-dbus' 'lib32-libpulse' 'lib32-libsndfile' 'lib32-readline')
 makedepends=('cmake' 'gcc-multilib' 'lib32-ladspa')
 optdepends=('pulseaudio: PulseAudio sound support')
 
source=("http://downloads.sourceforge.net/fluidsynth/fluidsynth-$pkgver.tar.gz;)