blob: 5b92fe375d498c32c74fcb90f55e8e58d92559b6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
|
# Contributor: Patrick McCarty <pnorcks at gmail dot com>
# Maintainer: Stefan Husmann <stefan-husmann@t-online.de>
# if you switch from freetype2 from [extra] to freetype2-infinality-ultimate,
# delete the $srcdir directory before building
pkgname=lilypond-git
pkgver=2.25b32462.800ff4b485
pkgrel=1
pkgdesc="An automated music engraving system (Git snapshot)"
arch=('i686' 'x86_64')
url="http://lilypond.org/"
license=('GPL')
depends=('guile'
'pango'
'fontconfig'
'freetype2'
'python-lxml')
makedepends=('fontforge'
'git'
'gsfonts'
't1utils'
'dblatex'
'tex-gyre-fonts'
'texlive-langcyrillic'
'texi2html'
'netpbm'
'python')
optdepends=('extractpdfmark: for reducing the size of pdf output significantly'
'tidy: same for HTML files'
'tk: for the gui')
provides=('lilypond')
conflicts=('lilypond')
source=(git+https://gitlab.com/lilypond/lilypond.git)
sha256sums=('SKIP')
options=('!makeflags')
pkgver() {
cd lilypond/
printf %s.%sb%s.%s $(grep MAJOR VERSION | cut -d= -f2) \
$(grep MINOR VERSION | cut -d= -f2) $(git rev-list --count HEAD) \
$(git rev-parse --short HEAD)
}
build() {
cd lilypond/
[[ -f config.hh ]] && rm config.hh
export GUILE_FLAVOR=guile-3.0
./autogen.sh --noconfigure
[[ -d build ]] || mkdir build
cd build
../configure --prefix=/usr --disable-documentation
make -j1
}
package() {
cd lilypond/build
make DESTDIR="$pkgdir/" vimdir="/usr/share/vim/vimfiles" install
rm -rf "$pkgdir"/usr/share/man
}
|