summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Weißschuh2012-02-12 14:10:25 +0000
committerThomas Weißschuh2012-02-12 14:10:25 +0000
commit3192498ae7c65a5195639ea5771b17e588bd93d3 (patch)
tree4e47f874f509752a17535c7aa19a9e9eda171a2a
downloadaur-3192498ae7c65a5195639ea5771b17e588bd93d3.tar.gz
initial commit
-rw-r--r--.SRCINFO14
-rw-r--r--PKGBUILD19
2 files changed, 33 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO
new file mode 100644
index 000000000000..79f1d914192b
--- /dev/null
+++ b/.SRCINFO
@@ -0,0 +1,14 @@
+pkgbase = lilypond-docs
+ pkgdesc = Offline documentation for lilypond
+ pkgver = 2.14.2
+ pkgrel = 1
+ url = http://lilypond.org
+ arch = any
+ license = GPL
+ depends = lilypond=2.14.2
+ options = !strip
+ source = http://lilypond.org/download/binaries/documentation/lilypond-2.14.2-1.documentation.tar.bz2
+ sha1sums = da2e66a604c06ff55e66e11ec8812c2c32b4cf6f
+
+pkgname = lilypond-docs
+
diff --git a/PKGBUILD b/PKGBUILD
new file mode 100644
index 000000000000..35d4c07dec70
--- /dev/null
+++ b/PKGBUILD
@@ -0,0 +1,19 @@
+# Maintainer: Thomas Weißschuh <thomas_weissschuh || lavabit || com>
+
+pkgname=lilypond-docs
+pkgver=2.14.2
+pkgrel=1
+pkgdesc="Offline documentation for lilypond"
+arch=(any)
+url="http://lilypond.org"
+depends=("lilypond=${pkgver}")
+license=("GPL")
+options=("!strip")
+source=("http://lilypond.org/download/binaries/documentation/lilypond-${pkgver}-1.documentation.tar.bz2")
+sha1sums=('da2e66a604c06ff55e66e11ec8812c2c32b4cf6f')
+
+package(){
+ mkdir -p ${pkgdir}/usr/share
+ cp -R ${srcdir}/share/doc/ ${srcdir}/share/omf/ ${pkgdir}/usr/share/
+}
+# vim: sw=2:ts=2 et: