summaryrefslogtreecommitdiff
path: root/community/lilypond/PKGBUILD
blob: f6d6bd0b3a5cb6d10f41d6a6c3993357556b7d35 (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
# $Id: PKGBUILD 28189 2010-10-03 15:28:38Z foutrelis $
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
# Maintainer: Geoffroy Carrier <geoffroy@archlinux.org>
# Contributor: Andrea `BaSh` Scarpino <bash.lnx@gmail.com>
# Contributor: William Rea <sillywilly@gmail.com>
# Contributor: Robert Emil Berge <filoktetes@linuxophic.org>

pkgname=lilypond
pkgver=2.12.3
pkgrel=7
pkgdesc="An automated music engraving system"
arch=('i686' 'x86_64')
url="http://lilypond.org"
license=('GPL')
depends=('guile' 'python2' 'texlive-core' 'ghostscript' 'pango' 'fontconfig')
makedepends=('flex' 'bison' 'gettext' 'mftrace' 'texinfo' 'fontforge' 't1utils' 'gsfonts')
options=('emptydirs')
source=(http://download.linuxaudio.org/lilypond/sources/v2.12/$pkgname-$pkgver.tar.gz
	lilypond-gcc45.patch)
md5sums=('2303bf5f2ea8d4628f33a68f016f3866'
         '023636ea13dc6eb2de379e5ef369b218')

build() {
  cd "$srcdir/$pkgname-$pkgver"

  # python2 fix
  for file in $(find . -name '*.py' -print); do
    sed -i 's_^#!.*/usr/bin/python_#!/usr/bin/python2_' $file
    sed -i 's_^#!.*/usr/bin/env.*python_#!/usr/bin/env python2_' $file
  done

#  libtoolize --force --copy
#  aclocal
#  autoconf
#  automake
  ./configure --prefix=/usr --disable-gui
  patch -p1 <$srcdir/lilypond-gcc45.patch
  make
  make DESTDIR="$pkgdir" install
}