void-packages/srcpkgs/qsynth/template
2019-03-17 02:43:19 -03:00

30 lines
1 KiB
Bash

# Template file for 'qsynth'
pkgname=qsynth
version=0.5.5
revision=1
build_style=gnu-configure
hostmakedepends="pkg-config qt5-tools"
makedepends="qt5-x11extras-devel jack-devel fluidsynth-devel"
depends="fluidsynth jack desktop-file-utils hicolor-icon-theme"
short_desc="Qt GUI Interface for FluidSynth"
maintainer="Juan RP <xtraeme@voidlinux.org>"
license="GPL-2.0-or-later"
homepage="http://qsynth.sourceforge.io"
distfiles="${SOURCEFORGE_SITE}/${pkgname}/${pkgname}-${version}.tar.gz"
checksum=858f52b95642a25f570342d5cf7fafd2a2addb89d567c5b68a3545beb6fda723
if [ "${CROSS_BUILD}" ]; then
hostmakedepends+=" qt5-x11extras-devel"
fi
post_configure() {
# make qmake use the right compiler when cross compiling, flags are recognized
vsed -i -e "s/\(export QMAKE = .\+\)/\1 QMAKE_CC=$CC QMAKE_CXX=$CXX QMAKE_LINK=$CXX/" Makefile
}
pre_install() {
# revert previous changes else installation aborts with
# “Could not find qmake configuration file default.”
vsed -i -e "s/\(export QMAKE = .\+\) QMAKE_CC.\+/\1/" Makefile
}