mirror of
https://github.com/termux/termux-packages.git
synced 2024-11-13 14:09:19 +00:00
30 lines
1.2 KiB
Bash
30 lines
1.2 KiB
Bash
TERMUX_PKG_HOMEPAGE=http://www.lenmus.org/
|
|
TERMUX_PKG_DESCRIPTION="A free program to help you in the study of music theory and ear training"
|
|
TERMUX_PKG_LICENSE="GPL-3.0"
|
|
TERMUX_PKG_MAINTAINER="@termux"
|
|
TERMUX_PKG_VERSION=6.0.1
|
|
TERMUX_PKG_SRCURL=https://github.com/lenmus/lenmus/archive/refs/tags/Release_${TERMUX_PKG_VERSION}.tar.gz
|
|
TERMUX_PKG_SHA256=1fa5b8edc468c800598845aa809b4a4e93058ed13af40bfacd037c44d1c4bc1d
|
|
TERMUX_PKG_AUTO_UPDATE=true
|
|
TERMUX_PKG_UPDATE_VERSION_REGEXP="\d+\.\d+\.\d+"
|
|
TERMUX_PKG_DEPENDS="fluidsynth, fontconfig, freetype, libc++, libpng, libsqlite, portmidi, wxwidgets, zlib"
|
|
TERMUX_PKG_EXTRA_CONFIGURE_ARGS="
|
|
-DFLUIDR3_PATH=$TERMUX_PREFIX/share/soundfonts
|
|
-DLENMUS_COMPILER_GCC=0
|
|
-DLENMUS_COMPILER_MSVC=0
|
|
-DMAN_INSTALL_DIR=$TERMUX_PREFIX/share/man
|
|
"
|
|
|
|
termux_step_create_debscripts() {
|
|
echo "#!$TERMUX_PREFIX/bin/sh" > postinst
|
|
echo "if [ ! -e $TERMUX_PREFIX/share/soundfonts/FluidR3_GM.sf2 ]; then" >> postinst
|
|
echo " echo" >> postinst
|
|
echo " echo You may need to get \\\`FluidR3_GM.sf2\\' from somewhere and put it into:" >> postinst
|
|
echo " echo" >> postinst
|
|
echo " echo ' '$TERMUX_PREFIX/share/soundfonts/" >> postinst
|
|
echo " echo" >> postinst
|
|
echo "fi" >> postinst
|
|
echo "exit 0" >> postinst
|
|
chmod 0755 postinst
|
|
}
|