mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-08 23:03:46 +00:00
27 lines
882 B
Bash
27 lines
882 B
Bash
|
# 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.2
|
||
|
pkgrel=1
|
||
|
pkgdesc="An automated music engraving system"
|
||
|
arch=('i686' 'x86_64')
|
||
|
url="http://lilypond.org"
|
||
|
license=('GPL')
|
||
|
depends=('guile' 'python' 'tetex' 'ghostscript' 'pango' 'fontforge' 'fontconfig')
|
||
|
makedepends=('flex' 'bison' 'gettext' 'mftrace' 'texinfo')
|
||
|
options=('emptydirs')
|
||
|
source=(http://download.linuxaudio.org/lilypond/sources/v2.12/$pkgname-$pkgver.tar.gz)
|
||
|
build() {
|
||
|
cd "$srcdir/$pkgname-$pkgver"
|
||
|
libtoolize --force --copy
|
||
|
aclocal
|
||
|
autoconf
|
||
|
automake
|
||
|
./configure --prefix=/usr --disable-gui
|
||
|
make || return 1
|
||
|
make DESTDIR="$pkgdir" install || return 1
|
||
|
}
|
||
|
md5sums=('681dfbecf8a3710d1400cf9488be716b')
|