blob: 781ef7c3785864460205030cc77b264d9c61b933 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
|
_java_ver=8
_jdkname="zulu${_java_ver}-fx"
_zulu_build="${_java_ver}.82.0.21-ca-fx"
pkgname="${_jdkname}-bin"
pkgver="${_java_ver}.0.432"
pkgrel=1
pkgdesc='Azul Zulu Builds of OpenJDK With OpenJFX are open source, TCK-tested and certified builds of OpenJDK.'
arch=('x86_64')
url='https://www.azul.com/downloads/'
license=('custom')
depends=(
'java-environment-common' 'java-runtime-common' 'ca-certificates-utils'
# not 100% sure if all of these dependencies are needed
# dependencies from jre8-openjdk-headless
'nss'
# dependencies from jre8-openjdk
'xdg-utils' 'hicolor-icon-theme'
)
provides=(
"java-environment=$_java_ver"
"java-environment-openjdk=$_java_ver"
"java-runtime=$_java_ver"
"java-runtime-openjdk=$_java_ver"
"java-runtime-headless=$_java_ver"
"java-runtime-headless-openjdk=$_java_ver"
"java-openjfx=$_java_ver"
)
conflicts=('zulu-8-bin')
options=('!debug')
install="$pkgname.install"
source_x86_64=("https://cdn.azul.com/zulu/bin/zulu${_zulu_build}-jdk${pkgver}-linux_x64.tar.gz")
sha256sums_x86_64=('e355aea5f7c47d1119808cfcfc496fa296ddeb02c2f22391772356fcb657df86')
_jvmdir="/usr/lib/jvm/${pkgname}"
# Upstream config files that should go to etc and get backup
_conf_files=(
calendars.properties
content-types.properties
flavormap.properties
images/cursors/cursors.properties
logging.properties
management/jmxremote.access
management/jmxremote.password
management/management.properties
management/snmp.acl
net.properties
psfont.properties.ja
psfontj2d.properties
security/java.policy
security/java.security
sound.properties
)
package() {
_conf_files+=('amd64/jvm.cfg')
cd "$srcdir/zulu${_zulu_build}-jdk${pkgver}-linux_x64"
install -dm 755 "${pkgdir}/${_jvmdir}"
cp -a . "${pkgdir}/${_jvmdir}/"
# copied from java8-openjdk
# Set config files
mv "${pkgdir}${_jvmdir}"/jre/lib/management/jmxremote.password{.template,}
mv "${pkgdir}${_jvmdir}"/jre/lib/management/snmp.acl{.template,}
# Conf
install -dm 755 "${pkgdir}/etc/${pkgname}"
for f in "${_conf_files[@]}"; do
_file="${_jvmdir}/jre/lib/$f"
install -D -m 644 "${pkgdir}${_file}" "${pkgdir}/etc/${pkgname}/$f"
ln -sf "/etc/${pkgname}/$f" "${pkgdir}${_file}"
done
# Install license
install -d -m 755 "${pkgdir}/usr/share/licenses/${pkgbase}/"
install -m 644 ASSEMBLY_EXCEPTION LICENSE THIRD_PARTY_README "${pkgdir}/usr/share/licenses/${pkgbase}"
# Man pages
for f in man/man1/* man/ja/man1/*; do
install -Dm 644 "${f}" "${pkgdir}/usr/share/${f/\.1/-zulu-8.1}"
done
rm -rf "${pkgdir}/${_jvmdir}/man"
ln -s /usr/share/man "${pkgdir}/${_jvmdir}/man"
# Link JKS keystore from ca-certificates-utils
rm -f "${pkgdir}${_jvmdir}/jre/lib/security/cacerts"
ln -sf /etc/ssl/certs/java/cacerts "${pkgdir}${_jvmdir}/jre/lib/security/cacerts"
}
|