void-packages/srcpkgs/lilypond/template
2018-03-21 16:13:03 +01:00

51 lines
1.5 KiB
Bash

# Template file for 'lilypond'
pkgname="lilypond"
version="2.19.80"
revision=2
_tlversion=2017
build_wrksrc="build"
build_style="gnu-configure"
configure_script="../configure"
configure_args="--disable-documentation
--with-texgyre-dir=/opt/texlive/${_tlversion}/texmf-dist/fonts/opentype/public/tex-gyre"
hostmakedepends="automake autogen pkg-config flex bison fontforge gettext
perl texlive-bin gnupg guile1.8"
makedepends="guile1.8-devel fontconfig-devel freetype-devel pango-devel
python-devel libltdl-devel gc-devel"
depends="python ghostscript"
short_desc="Music engraving program"
maintainer="newbluemoon <blaumolch@mailbox.org>"
homepage="http://lilypond.org/"
license="GPL-3, FDL-1.3"
distfiles="http://download.linuxaudio.org/${pkgname}/source/v2.19/${pkgname}-${version}.tar.gz"
checksum=3679db30a3f74ce8668691952fb0dd58d8ad6bad099017e815ca3e4312261453
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
*-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}
}