vp-build/srcpkgs/fluidsynth/template

35 lines
1.0 KiB
Bash

# Template file for 'fluidsynth'
pkgname=fluidsynth
version=2.3.0
revision=1
build_style=cmake
make_check_target=check
configure_args="-DLIB_SUFFIX=
-DDEFAULT_SOUNDFONT:STRING=/usr/share/soundfonts/default.sf2"
hostmakedepends="pkg-config"
makedepends="SDL2-devel glib-devel jack-devel libsndfile-devel pipewire-devel pulseaudio-devel readline-devel"
short_desc="Real-time software synthesizer based on the SoundFont 2 specifications"
maintainer="Orphaned <orphan@voidlinux.org>"
license="LGPL-2.1-or-later"
homepage="http://www.fluidsynth.org/"
distfiles="https://github.com/FluidSynth/fluidsynth/archive/v${version}.tar.gz"
checksum=1df5a1afb91acf3b945b7fdb89ac0d99877622161d9b5155533da59113eaaa20
libfluidsynth_package() {
short_desc+=" - runtime library"
pkg_install() {
vmove "usr/lib/*.so.*"
}
}
fluidsynth-devel_package() {
depends="libfluidsynth>=${version} $makedepends"
short_desc+=" - development files"
pkg_install() {
vmove usr/lib/cmake
vmove usr/include
vmove usr/lib/pkgconfig
vmove "usr/lib/*.so"
}
}