blob: 1feeb77acaaf60690b714a5ce0407cb8177d048f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# Contributor: Bernardo Barros <<bbarros at xsounds dot org>>
# Contributor: Thomas Weißschuh <thomas_weissschuh || lavabit || com>
# Contributor: Stefan Husmann <stefan-husmann@t-online.de>
# Maintainer: Erich Eckner <arch at eckner dot net>
pkgname=lilypond-devel-docs
pkgver=2.21.1
pkgrel=1
pkgdesc="Offline documentation for lilypond"
arch=('any')
url="http://lilypond.org"
license=('GPL')
options=('!strip')
source=("http://lilypond.org/downloads/binaries/documentation/lilypond-${pkgver}-1.documentation.tar.bz2")
sha512sums=('e9ed92da9b8d99f3e00765ffa1952a018f750094ce3ae47e790ae2a5f29140d378bbe72395d6eaae2c2b070bc3836861c8bb3bcf069d6ce1996e69d175da1eaa')
depends=("lilypond=${pkgver}")
package(){
install -d ${pkgdir}/usr/share
cp -R ${srcdir}/share/doc/ ${srcdir}/share/info/ ${pkgdir}/usr/share/
}
|