blob: 0cad3010ee3f17a69e82d93e6e3f1b70c65f7f18 (
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
|
#! /bin/sh
. versiondef.sh
# The Netscape signing keys were created using the Netscape signtool
# utility, as follows:
# copy key3.db and cert7.db from one of the users directories.
# signtool -d . -G GL4JInst271
# Enter the following information:
# certificate common name: GL4JInst271
# organization: GL4Java Development Team
# organization unit: GL4JInst
# state or province: NRW
# country (must be exactly 2 characters): DE
# username: GL4JInst
# email address: gl4java@jausoft.com
# When the certificate has been created, copy x509.cacert to x509.crt using
# the following command: copy x509.cacert x509.crt
# Copy key3.db and cert7.db back to the users directories.
cp ~/.netscape/key3.db .
cp ~/.netscape/cert7.db .
rm -f *.class GL4JInst_ns.jar
javac -classpath ".:../capsapi_classes.zip" *.java
. versionundef.sh
rm -rf META-INF
signtool -d . -e .class -k GL4JInst271 -Z GL4JInst_ns.jar -c9 --norecurse .
rm -rf META-INF
rm -f key3.db cert7.db *.class
|