forked from AuroraMiddleware/gtk
1d15be1599
2001-11-03 Tor Lillqvist <tml@iki.fi> * modules/input/Makefile.am: Use -no-undefined on Windows. Look for .dll or .so as appropriate as module suffix. * gtk-zip.sh.in: Use correct import library names. * gtk/gtk.def: Add a couple of missing entry points. (#63585) 2001-11-02 Tor Lillqvist <tml@iki.fi> * gtk/gtkrc.c (gtk_rc_make_default_dir): Fix typo: extraneous comma. Include gtkprivate.h for GTK_LIBDIR etc definitions on Windows. 2001-10-30 Tor Lillqvist <tml@iki.fi> * Makefile (install-data-hook): Use cp, not $(LN_S) on the .pc files. Configure on Win32 (running on Cygwin) thinks symlinks exist, but pkg-config is not necesarily a Cygwin program, and doesn't understand them.
34 lines
1.2 KiB
Bash
Executable File
34 lines
1.2 KiB
Bash
Executable File
#!/bin/sh
|
|
|
|
# Build zipfile for GTK on Win32: both runtime and developer stuff
|
|
|
|
# These two directory paths are obviously system-dependent.
|
|
# These are what tml@iki.fi uses, change as appropriate.
|
|
ZIP=/g/tmp/gtk+-@GTK_VERSION@-`date +%Y%m%d`.zip
|
|
cd /target
|
|
|
|
rm $ZIP
|
|
zip -r $ZIP -@ <<EOF
|
|
COPYING.LIB-2
|
|
etc/gtk-2.0
|
|
include/gtk-2.0
|
|
lib/libgdk_pixbuf-@GTK_MAJOR_VERSION@.@GTK_MINOR_VERSION@-@LT_CURRENT_MINUS_AGE@.dll
|
|
lib/libgdk_pixbuf-@GTK_MAJOR_VERSION@.@GTK_MINOR_VERSION@.dll.a
|
|
lib/gdk_pixbuf-@GTK_MAJOR_VERSION@.@GTK_MINOR_VERSION@.lib
|
|
lib/libgdk-win32-@GTK_MAJOR_VERSION@.@GTK_MINOR_VERSION@-@LT_CURRENT_MINUS_AGE@.dll
|
|
lib/libgdk-win32-@GTK_MAJOR_VERSION@.@GTK_MINOR_VERSION@.dll.a
|
|
lib/gdk-win32-@GTK_MAJOR_VERSION@.@GTK_MINOR_VERSION@.lib
|
|
lib/libgtk-win32-@GTK_MAJOR_VERSION@.@GTK_MINOR_VERSION@-@LT_CURRENT_MINUS_AGE@.dll
|
|
lib/libgtk-win32-@GTK_MAJOR_VERSION@.@GTK_MINOR_VERSION@.dll.a
|
|
lib/gtk-win32-@GTK_MAJOR_VERSION@.@GTK_MINOR_VERSION@.lib
|
|
lib/gtk-2.0
|
|
lib/pkgconfig/gdk-pixbuf-2.0.pc
|
|
lib/pkgconfig/gdk-2.0.pc
|
|
lib/pkgconfig/gdk-win32-2.0.pc
|
|
lib/pkgconfig/gtk+-2.0.pc
|
|
lib/pkgconfig/gtk+-win32-2.0.pc
|
|
share/aclocal/gtk-2.0.m4
|
|
EOF
|
|
|
|
zip -r $ZIP lib/locale/*/LC_MESSAGES/gtk20.mo
|