summaryrefslogtreecommitdiff
path: root/pcr/csound-doc
diff options
context:
space:
mode:
authorAndreas Grapentin <andreas@grapentin.org>2018-01-26 07:53:39 +0100
committerAndreas Grapentin <andreas@grapentin.org>2018-01-26 07:53:39 +0100
commit58e264f4341f69467aed2ad35aca1d42348eabd2 (patch)
tree200e1b31bb336a25cf3db89d8a566b061d4ada3e /pcr/csound-doc
parent9c448296310ab7f0fc7a57e8f9bae11383924544 (diff)
downloadabslibre-58e264f4341f69467aed2ad35aca1d42348eabd2.tar.gz
abslibre-58e264f4341f69467aed2ad35aca1d42348eabd2.tar.bz2
abslibre-58e264f4341f69467aed2ad35aca1d42348eabd2.zip
pcr/csound-doc: added
Diffstat (limited to 'pcr/csound-doc')
-rw-r--r--pcr/csound-doc/PKGBUILD26
1 files changed, 26 insertions, 0 deletions
diff --git a/pcr/csound-doc/PKGBUILD b/pcr/csound-doc/PKGBUILD
new file mode 100644
index 000000000..4cfe4d3d3
--- /dev/null
+++ b/pcr/csound-doc/PKGBUILD
@@ -0,0 +1,26 @@
+# Maintainer (AUR): Ainola
+# Contributor (AUR): speps
+# Contributor (AUR): Bernardo Barros
+# Contributor (AUR): Lars Boettcher
+
+# parabola changes and rationale:
+# no changes.
+
+pkgname=csound-doc
+pkgver=6.10.0
+pkgrel=1
+pkgdesc="The Canonical Csound Reference Manual"
+url="http://csound.github.io"
+arch=('any')
+license=('LGPL' 'GPL')
+optdepends=('csound')
+# This is a hardcoded link because the devs change the naming convention often.
+source=("https://github.com/csound/csound/releases/download/6.10.0/Csound6.10.0_manual_html.zip")
+sha256sums=('1f3bc78e7826cc32b0fa43f73b60a9f8b2ee09c3c47118bcb9d5e8649b66dbcf')
+
+package() {
+ install -d "$pkgdir/usr/share/doc/csound-doc/html"
+ cp -a "$srcdir"/html/* "$pkgdir/usr/share/doc/csound-doc/html"
+
+ find "$pkgdir" -type f -exec chmod 644 {} \;
+}