# Maintainer: Det # Contributor: Ondrej Kucera # Contributor: Andrea Scarpino pkgname=('jdk-docs' 'javafx-docs') _major=8 _minor=66 _build=b17 pkgver=${_major}u${_minor} pkgrel=1 pkgdesc="Documentation for Oracle Java Development Kit" arch=('any') url="http://www.oracle.com/technetwork/java/javase/downloads/index.html" license=('custom:Oracle') optdepends=("java-runtime>=$_major: Run the examples" "java-environment>=$_major: Compile and run the examples") options=('!strip') source=("http://download.oracle.com/otn-pub/java/jdk/$pkgver-$_build/jdk-$pkgver-docs-all.zip" "http://download.oracle.com/otn-pub/java/javafx/$_major.0.$_minor-$_build/javafx-$pkgver-apidocs.zip" 'LICENSE-Documentation' 'LICENSE-JavaFX') md5sums=('48632e0e87b9c51de71a8665402943a1' '4091e08c3a62589afdd7951880a1f291' '4d54057ca75b691366977dab2277e869' 'b2a9fa7a855645ba5e1ea2ea555cce25') DLAGENTS=('http::/usr/bin/curl -fLC - --retry 3 --retry-delay 3 -b oraclelicense=a -o %o %u') package_jdk-docs() { # Install install -d "$pkgdir"/usr/share/doc/java/ mv docs/* "$pkgdir"/usr/share/doc/java/ # License install -d "$pkgdir"/usr/share/licenses/$pkgname/ install -m644 LICENSE-Documentation "$pkgdir"/usr/share/licenses/$pkgname/ install -Dm644 LICENSE-Documentation "$pkgdir"/usr/share/licenses/$pkgname/LICENSE } package_javafx-docs() { # Install install -d "$pkgdir"/usr/share/doc/java/javafx/ mv api "$pkgdir"/usr/share/doc/java/javafx/ # License install -d "$pkgdir"/usr/share/licenses/$pkgname/ install -Dm644 LICENSE-JavaFX "$pkgdir"/usr/share/licenses/$pkgname/LICENSE }