50 lines
1.5 KiB
Bash
50 lines
1.5 KiB
Bash
# Template file for 'lilypond'
|
|
pkgname=lilypond
|
|
version=2.19.84
|
|
revision=1
|
|
_tlversion=2019
|
|
build_wrksrc="build"
|
|
build_style="gnu-configure"
|
|
configure_script="../configure"
|
|
configure_args="--disable-documentation ac_cv_func_isinf=yes
|
|
--with-texgyre-dir=/opt/texlive/${_tlversion}/texmf-dist/fonts/opentype/public/tex-gyre"
|
|
hostmakedepends="autogen automake flex fontforge gettext gnupg guile1.8 pkg-config
|
|
tar texinfo texlive-bin"
|
|
makedepends="gc-devel guile1.8-devel libltdl-devel pango-devel python-devel"
|
|
depends="python ghostscript"
|
|
short_desc="Music engraving program"
|
|
maintainer="newbluemoon <blaumolch@mailbox.org>"
|
|
license="GPL-3.0-or-later, GFDL-1.3-or-later"
|
|
homepage="http://lilypond.org/"
|
|
distfiles="http://lilypond.org/downloads/sources/v2.19/lilypond-${version}.tar.gz"
|
|
checksum=94dcc66447f24966f28eda72c79e1ec16143b8ea4a537cc9f97d017cc0c0dd11
|
|
|
|
if [ -n "${CROSS_BUILD}" ]; then
|
|
# needs guile-config-1.8 and python-config
|
|
hostmakedepends+=" guile1.8-devel python-devel"
|
|
makedepends+=" libfl-devel"
|
|
configure_args+=" --with-python-lib=python2.7
|
|
--with-python-include=${XBPS_CROSS_BASE}/usr/include/python2.7"
|
|
fi
|
|
|
|
case "$XBPS_TARGET_MACHINE" in
|
|
x86_64-musl) ;;
|
|
*-musl) broken="no texlive available yet";;
|
|
esac
|
|
|
|
post_extract() {
|
|
if [ ! -d $wrksrc/$build_wrksrc ]; then
|
|
mkdir $wrksrc/$build_wrksrc
|
|
fi
|
|
}
|
|
|
|
pre_configure() {
|
|
source /etc/profile.d/texlive.sh
|
|
tlmgr install t1utils lh epsf tex-gyre
|
|
cd .. && ./autogen.sh --noconfigure
|
|
}
|
|
|
|
do_build() {
|
|
source /etc/profile.d/texlive.sh
|
|
make ${makejobs} ${make_build_args} ${make_build_target}
|
|
}
|