diff options
author | Erich Eckner <git@eckner.net> | 2018-04-26 11:38:38 +0200 |
---|---|---|
committer | Erich Eckner <git@eckner.net> | 2018-04-26 11:38:38 +0200 |
commit | 354c326bdd78025568314d2b4d7dfde90c7b99bb (patch) | |
tree | 1292496c8779cd52b21a94774920ce82d7f8c675 | |
parent | a57e9b4ad06ec48beccdc78d373fac83722d0c87 (diff) | |
download | archlinuxewe-354c326bdd78025568314d2b4d7dfde90c7b99bb.tar.xz |
lilypond-devel-docs neu
-rw-r--r-- | lilypond-devel-docs/PKGBUILD | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/lilypond-devel-docs/PKGBUILD b/lilypond-devel-docs/PKGBUILD new file mode 100644 index 000000000..734ba71d1 --- /dev/null +++ b/lilypond-devel-docs/PKGBUILD @@ -0,0 +1,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@eckner.net> + +pkgname=lilypond-devel-docs +pkgver=2.19.81 +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") +sha256sums=('cecbdc7c5c8e5ff4857a431ed444569e8ff345c1194fb68bdadd741d6c73ef8c') +depends=("lilypond=${pkgver}") + +package(){ + install -d ${pkgdir}/usr/share + cp -R ${srcdir}/share/doc/ ${srcdir}/share/omf/ ${pkgdir}/usr/share/ +} |