1. # Maintainer : SpepS <dreamspepser at yahoo dot it>
  2. # Contributor: Bernardo Barros <bernardobarros@gmail.com>
  3. # Contributor: Lars Boettcher lars@newyew.de>
  4.  
  5. pkgname=csound-doc
  6. pkgver=5.13
  7. pkgrel=1
  8. pkgdesc="The Canonical Csound Reference Manual"
  9. url="http://csound.sourceforge.net/"
  10. arch=('any')
  11. license=('LGPL' 'GPL')
  12. depends=('csound')
  13. source=("http://downloads.sourceforge.net/csound/Csound${pkgver}_manual_html.zip")
  14. md5sums=('f4b7601757d5315ac57489154c69db62')
  15.  
  16. build() {
  17. install -d $pkgdir/usr/share/doc/csound
  18. cp -a "$srcdir/html" "$pkgdir/usr/share/doc/csound"
  19.  
  20. # Change permissions
  21. find "$pkgdir" -type f -exec chmod 644 {} \;
  22. }