Received: from knopi.disroot.org (knopi.disroot.org [178.21.23.139]) by nld3-dev1.alpinelinux.org (Postfix) with ESMTPS id 2B340782B31 for ; Mon, 2 Sep 2019 19:17:45 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by disroot.org (Postfix) with ESMTP id CF8792519A for ; Mon, 2 Sep 2019 21:17:44 +0200 (CEST) X-Virus-Scanned: Debian amavisd-new at disroot.org Received: from knopi.disroot.org ([127.0.0.1]) by localhost (disroot.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id OExBA0_HZJIA; Mon, 2 Sep 2019 21:17:43 +0200 (CEST) From: Bart Ribbers DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=disroot.org; s=mail; t=1567451863; bh=fPGOrHbe4SB1RW8kCCNJdI4UFhxH+p9ygRzTgtcudFs=; h=From:To:Cc:Subject:Date; b=DtiLF/9t4U+wQFtCPskE7Xn3fVCWY08upm+bTDW8cJx5ltKJWejx4esWRAdil+1C5 59MZXEeT41HB0243WqLiqNyxLejeSB2rtw8gxbB36EmLpa5VjS1GhzaGxHH9tJQnic 7cyLPl5vdjPVowa39ebTyvNH4YfUPy6+ieCUeHhMLTWpah2D4zJTLr59HuNbWcYhMQ /+0uJEm605m4IIhDAO+hzjyZyxlAxw6Knp6AFLAHlVflpD2D5vIEIF6HivAOMDZY9F bm0S3zY9g5wh8xnv6H2qpF87ceE2RFrrYcDK40y87SsFv2bou3ZH3GSRAk6NedCiDg Oho/dT7mJxFzA== To: alpine-aports@lists.alpinelinux.org Cc: Bart Ribbers Subject: [PATCH 1/2] testing/fluidsynth: new aport Date: Mon, 2 Sep 2019 21:17:38 +0200 Message-Id: <20190902191739.11286-1-bribbers@disroot.org> Mime-Version: 1.0 Content-Transfer-Encoding: 8bit --- testing/fluidsynth/APKBUILD | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 testing/fluidsynth/APKBUILD 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 +# Maintainer: Bart Ribbers +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" -- 2.23.0