diff options
author | Bart Ribbers <bribbers@disroot.org> | 2019-09-02 21:17:38 +0200 |
---|---|---|
committer | Leo <thinkabit.ukim@gmail.com> | 2019-09-03 02:01:57 -0300 |
commit | d37e5f0213f5f9549ddbcfcba942b3b1564c840e (patch) | |
tree | 90e91ddbb32c5d6acd1b904680465427e6b5d7d4 | |
parent | deec107a2eece0f4ea6a7f7d697a326a560cd30d (diff) | |
download | aports-d37e5f0213f5f9549ddbcfcba942b3b1564c840e.tar.bz2 aports-d37e5f0213f5f9549ddbcfcba942b3b1564c840e.tar.xz |
testing/fluidsynth: new aport
-rw-r--r-- | testing/fluidsynth/APKBUILD | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/testing/fluidsynth/APKBUILD b/testing/fluidsynth/APKBUILD new file mode 100644 index 0000000000..4c0b724237 --- /dev/null +++ b/testing/fluidsynth/APKBUILD @@ -0,0 +1,32 @@ +# Contributor: Bart Ribbers <bribbers@disroot.org> +# Maintainer: Bart Ribbers <bribbers@disroot.org> +pkgname=fluidsynth +pkgver=2.0.6 +pkgrel=0 +arch="all" +url="http://www.fluidsynth.org" +pkgdesc="A real-time software synthesizer based on the SoundFont 2 specifications" +license="LGPL-2.1-or-later" +depends_dev="glib-dev libsndfile-dev alsa-lib-dev pulseaudio-dev readline-dev dbus-dev" +makedepends="$depends_dev cmake doxygen graphviz" +source="$pkgname-$pkgver.tar.gz::https://github.com/fluidsynth/fluidsynth/archive/v$pkgver.tar.gz" +subpackages="$pkgname-dev $pkgname-doc" + +build() { + cmake \ + -DCMAKE_BUILD_TYPE=RelWithDebInfo \ + -DCMAKE_INSTALL_PREFIX=/usr \ + -DLIB_INSTALL_DIR=lib \ + -DFLUID_DAEMON_ENV_FILE=/etc/conf.d/fluidsynth + make +} + +check() { + make -k check +} + +package() { + DESTDIR="$pkgdir" make install +} + +sha512sums="c160e3d7c6ad62d5cc014642eb18a0f65eb90b5ad91db4049e1b45446034e989a4f9e5b805270967d4eaf47a6e2da0e81bdb5ae95500cc80d7021e8e61cd7107 fluidsynth-2.0.6.tar.gz" |