[arch-commits] Commit in lib32-fluidsynth/repos (2 files)

Maxime Gauduin alucryd at archlinux.org
Mon Oct 1 09:23:01 UTC 2018


    Date: Monday, October 1, 2018 @ 09:23:01
  Author: alucryd
Revision: 388737

archrelease: copy trunk to multilib-staging-x86_64

Added:
  lib32-fluidsynth/repos/multilib-staging-x86_64/
  lib32-fluidsynth/repos/multilib-staging-x86_64/PKGBUILD
    (from rev 388736, lib32-fluidsynth/trunk/PKGBUILD)

----------+
 PKGBUILD |   51 +++++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 51 insertions(+)

Copied: lib32-fluidsynth/repos/multilib-staging-x86_64/PKGBUILD (from rev 388736, lib32-fluidsynth/trunk/PKGBUILD)
===================================================================
--- multilib-staging-x86_64/PKGBUILD	                        (rev 0)
+++ multilib-staging-x86_64/PKGBUILD	2018-10-01 09:23:01 UTC (rev 388737)
@@ -0,0 +1,51 @@
+# Maintainer: Maxime Gauduin <alucryd at archlinux.org>
+# Contributor: carstene1ns <arch.carsten at teibes.de>
+# Contributor: Giuseppe Calà  <jiveaxe at gmail.com>
+# Contributor: Ray Rashif <schiv at archlinux.org>
+# Contributor: damir <damir at archlinux.org>
+
+pkgname=lib32-fluidsynth
+pkgver=2.0.0
+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')
+optdepends=('pulseaudio: PulseAudio sound support')
+source=("git+https://github.com/FluidSynth/fluidsynth.git#tag=v${pkgver}")
+sha256sums=('SKIP')
+
+prepare() {
+  if [[ -d build ]]; then
+    rm -rf build
+  fi
+  mkdir build
+}
+
+build() {
+  cd build
+
+  export CC='gcc -m32'
+  export PKG_CONFIG_PATH='/usr/lib32/pkgconfig'
+
+  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() {
+  make DESTDIR="${pkgdir}" -C build install
+  rm -rf "${pkgdir}"/usr/{include,share,bin}
+}
+
+# vim: ts=2 sw=2 et:



More information about the arch-commits mailing list