48 lines
1.4 KiB
Bash
48 lines
1.4 KiB
Bash
# Template file for 'lilypond'
|
|
pkgname=lilypond
|
|
# should be kept in sync with 'lilypond-doc'
|
|
version=2.23.10
|
|
revision=1
|
|
build_wrksrc="build"
|
|
build_style="gnu-configure"
|
|
configure_script="../configure"
|
|
configure_args="--disable-documentation ac_cv_func_isinf=yes
|
|
--with-texgyre-dir=/usr/share/texmf-dist/fonts/opentype/public/tex-gyre"
|
|
hostmakedepends="autogen automake bison flex fontforge gettext perl
|
|
pkg-config python3 t1utils tar texinfo texlive"
|
|
makedepends="gc-devel guile-devel libltdl-devel pango-devel"
|
|
depends="ghostscript guile python3"
|
|
checkdepends="ImageMagick rsync texi2html"
|
|
short_desc="Music engraving program"
|
|
maintainer="newbluemoon <blaumolch@mailbox.org>"
|
|
license="GPL-3.0-or-later, GFDL-1.3-or-later"
|
|
homepage="https://lilypond.org/"
|
|
distfiles="https://lilypond.org/downloads/sources/v2.23/lilypond-${version}.tar.gz"
|
|
checksum=06ac963df1699598c62f4390b8fc95344a723a88af440c00f5201c4aa8958f68
|
|
python_version=3
|
|
make_check=ci-skip # ci fails, but all checks pass locally
|
|
|
|
if [ -n "${CROSS_BUILD}" ]; then
|
|
makedepends+=" libfl-devel"
|
|
fi
|
|
|
|
post_extract() {
|
|
if [ ! -d $wrksrc/$build_wrksrc ]; then
|
|
mkdir $wrksrc/$build_wrksrc
|
|
fi
|
|
}
|
|
|
|
pre_configure() {
|
|
cd .. && ./autogen.sh --noconfigure
|
|
}
|
|
|
|
post_install() {
|
|
vmkdir usr/share/vim
|
|
mv $DESTDIR/usr/share/lilypond/${version}/vim $DESTDIR/usr/share/vim/vim82
|
|
}
|
|
|
|
do_check() {
|
|
make ${makejobs} CPU_COUNT=${makejobs#-j} test-baseline
|
|
make ${makejobs} CPU_COUNT=${makejobs#-j} check
|
|
}
|