aboutsummaryrefslogtreecommitdiffstats
path: root/Installer/makeNetscapeSignedJar-Win32.sh
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2000-11-18 06:43:49 +0000
committerSven Gothel <[email protected]>2000-11-18 06:43:49 +0000
commit880653d31a8f1ff8384fdbc75b84934bceecfdb8 (patch)
treebdafb71416f176d2a4b73bf716c9dc3f13685a8b /Installer/makeNetscapeSignedJar-Win32.sh
Initial revision
Diffstat (limited to 'Installer/makeNetscapeSignedJar-Win32.sh')
-rwxr-xr-xInstaller/makeNetscapeSignedJar-Win32.sh33
1 files changed, 33 insertions, 0 deletions
diff --git a/Installer/makeNetscapeSignedJar-Win32.sh b/Installer/makeNetscapeSignedJar-Win32.sh
new file mode 100755
index 0000000..ba67d38
--- /dev/null
+++ b/Installer/makeNetscapeSignedJar-Win32.sh
@@ -0,0 +1,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 GL4JInst204
+# Enter the following information:
+# certificate common name: GL4JInst204
+# organization: GL4Java Development Team
+# organization unit: GL4JInst
+# state or province: NRW
+# country (must be exactly 2 characters): DE
+# username: GL4JInst
+# email address: [email protected]
+# 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
+rm -rf META-INF
+
+. versionundef.sh
+
+signtool -d . -e .class -k GL4JInst204 -Z GL4JInst_ns.jar -c9 --norecurse .
+rm -rf META-INF
+
+#rm -f key3.db cert7.db *.class