summaryrefslogtreecommitdiff
path: root/atk-zip.sh.in
diff options
context:
space:
mode:
authorTor Lillqvist <tml@iki.fi>2001-10-28 10:59:50 +0000
committerTor Lillqvist <tml@src.gnome.org>2001-10-28 10:59:50 +0000
commitd0b10f1bc671d212a33b31341c642a6f3d5150c5 (patch)
tree7706f06e19b7a3a1f8b8c13af47d4f7a132f1f38 /atk-zip.sh.in
parentb120d2904a4b901b181c26c6f6f77d83e26a0e07 (diff)
downloadatk-d0b10f1bc671d212a33b31341c642a6f3d5150c5.tar.gz
New file, used to build developer package for Win32.
2001-10-28 Tor Lillqvist <tml@iki.fi> * atk-zip.sh.in: New file, used to build developer package for Win32. * Makefile.am * configure.in: Add it. * atk/Makefile.am: Add rules to install and uninstall mingw import library.
Diffstat (limited to 'atk-zip.sh.in')
-rwxr-xr-xatk-zip.sh.in17
1 files changed, 17 insertions, 0 deletions
diff --git a/atk-zip.sh.in b/atk-zip.sh.in
new file mode 100755
index 0000000..c6d694d
--- /dev/null
+++ b/atk-zip.sh.in
@@ -0,0 +1,17 @@
+#!/bin/sh
+
+# Build zipfile for ATK on Win32: both runtime and developer stuff
+
+# These two directory paths are obviously system-dependent. This is what tml
+# happens to use.
+ZIP=/g/tmp/atk-@ATK_VERSION@.zip
+cd /target
+
+rm $ZIP
+zip -r $ZIP -@ <<EOF
+include/atk-1.0
+lib/libatk-@LT_CURRENT_MINUS_AGE@.dll
+lib/libatk.dll.a
+lib/atk.lib
+lib/pkgconfig/atk.pc
+EOF