[arch-commits] Commit in lib32-fluidsynth/repos/multilib-x86_64 (PKGBUILD PKGBUILD)
David Runge
dvzrv at archlinux.org
Mon Apr 6 21:45:45 UTC 2020
Date: Monday, April 6, 2020 @ 21:45:44
Author: dvzrv
Revision: 612164
archrelease: copy trunk to multilib-x86_64
Added:
lib32-fluidsynth/repos/multilib-x86_64/PKGBUILD
(from rev 612163, lib32-fluidsynth/trunk/PKGBUILD)
Deleted:
lib32-fluidsynth/repos/multilib-x86_64/PKGBUILD
----------+
PKGBUILD | 134 ++++++++++++++++++++++++++++++-------------------------------
1 file changed, 68 insertions(+), 66 deletions(-)
Deleted: PKGBUILD
===================================================================
--- PKGBUILD 2020-04-06 21:45:37 UTC (rev 612163)
+++ PKGBUILD 2020-04-06 21:45:44 UTC (rev 612164)
@@ -1,66 +0,0 @@
-# Maintainer: Maxime Gauduin <alucryd at archlinux.org>
-# Contributor: David Runge <dvzrv 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
-_name=fluidsynth
-pkgver=2.1.1
-pkgrel=1
-pkgdesc='A real-time software synthesizer based on the SoundFont 2 specifications'
-arch=('x86_64')
-url="https://www.fluidsynth.org/"
-license=('LGPL2.1')
-depends=(
- fluidsynth
- lib32-glib2
- lib32-glibc
- lib32-jack
- lib32-dbus
- lib32-libpulse
- lib32-portaudio
- lib32-readline
- lib32-sdl2
-)
-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=('966d0393591b505d694e51cbf653387007144e9ae0b8705d82ec7d943d31d348')
-
-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-portaudio=ON \
- -B build
- make -C build VERBOSE=1
-}
-
-check() {
- cd "${_name}-${pkgver}"
- make -C build -k check
-}
-
-package() {
- depends+=('libasound.so' 'libinstpatch-1.0.so' 'libsndfile.so')
- cd "${_name}-${pkgver}"
-
- make -C build DESTDIR="${pkgdir}" install
- rm -rf "${pkgdir}"/usr/{include,share,bin}
-}
-# vim: ts=2 sw=2 et:
Copied: lib32-fluidsynth/repos/multilib-x86_64/PKGBUILD (from rev 612163, lib32-fluidsynth/trunk/PKGBUILD)
===================================================================
--- PKGBUILD (rev 0)
+++ PKGBUILD 2020-04-06 21:45:44 UTC (rev 612164)
@@ -0,0 +1,68 @@
+# Maintainer: Maxime Gauduin <alucryd at archlinux.org>
+# Contributor: David Runge <dvzrv 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
+_name=fluidsynth
+pkgver=2.1.2
+pkgrel=1
+pkgdesc='A real-time software synthesizer based on the SoundFont 2 specifications'
+arch=('x86_64')
+url="https://www.fluidsynth.org/"
+license=('LGPL2.1')
+depends=(
+ fluidsynth
+ lib32-glibc
+ lib32-libpulse
+ lib32-readline
+ lib32-sdl2
+)
+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=('9206d83b8d2f7e1ec259ee01e943071de67e419aabe142b51312f8edb39c5503')
+
+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-portaudio=ON \
+ -B build
+ make -C build VERBOSE=1
+}
+
+check() {
+ cd "${_name}-${pkgver}"
+ make -C build -k check
+}
+
+package() {
+ 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
+ rm -rf "${pkgdir}"/usr/{include,share,bin}
+}
+# vim: ts=2 sw=2 et:
More information about the arch-commits
mailing list