diff options
author | Tor Lillqvist <tml@novell.com> | 2008-09-05 08:49:49 +0000 |
---|---|---|
committer | Tor Lillqvist <tml@src.gnome.org> | 2008-09-05 08:49:49 +0000 |
commit | 245835738f52ec21b680c346a164aa7a2c9a721b (patch) | |
tree | 4d825a04c6d52e29b26f3d51aaae74a7f3985862 /gtk-zip.sh.in | |
parent | 486255099a96f24ca90b02a742a1bbdfb9f10e3d (diff) | |
download | gtk+-245835738f52ec21b680c346a164aa7a2c9a721b.tar.gz |
Fetch manpages from share/man where they get installed. Don't include
2008-09-05 Tor Lillqvist <tml@novell.com>
* gtk-zip.sh.in: Fetch manpages from share/man where they get
installed. Don't include pointless entries for directories in the
zip files.
svn path=/trunk/; revision=21299
Diffstat (limited to 'gtk-zip.sh.in')
-rwxr-xr-x | gtk-zip.sh.in | 23 |
1 files changed, 9 insertions, 14 deletions
diff --git a/gtk-zip.sh.in b/gtk-zip.sh.in index a05c5904d0..9c629a429a 100755 --- a/gtk-zip.sh.in +++ b/gtk-zip.sh.in @@ -32,29 +32,24 @@ zip $ZIP share/themes/Default/gtk-2.0-key/gtkrc zip $ZIP share/themes/Emacs/gtk-2.0-key/gtkrc zip $ZIP share/themes/MS-Windows/gtk-2.0/gtkrc -if [ -f share/locale/de/LC_MESSAGES/gtk20.mo ]; then - zip -r $ZIP share/locale/*/LC_MESSAGES/gtk20.mo - zip -r $ZIP share/locale/*/LC_MESSAGES/gtk20-properties.mo -else - zip -r $ZIP lib/locale/*/LC_MESSAGES/gtk20.mo - zip -r $ZIP lib/locale/*/LC_MESSAGES/gtk20-properties.mo -fi +zip $ZIP share/locale/*/LC_MESSAGES/gtk20.mo +zip $ZIP share/locale/*/LC_MESSAGES/gtk20-properties.mo -zip -r $ZIP share/doc/gtk+-@GTK_VERSION@ +zip -r -D $ZIP share/doc/gtk+-@GTK_VERSION@ rm $DEVZIP -zip -r $DEVZIP -@ <<EOF +zip -r -D $DEVZIP -@ <<EOF include/gtk-2.0 include/gail-1.0 bin/gdk-pixbuf-csource.exe bin/gtk-builder-convert bin/gtk-demo.exe bin/gtk-update-icon-cache.exe -man/man1/gdk-builder-convert.1 -man/man1/gdk-pixbuf-csource.1 -man/man1/gdk-update-icon-cache.1 -man/man1/gtk-pixbuf-query-loaders.1 -man/man1/gtk-query-immodules-2.0.1 +share/man/man1/gdk-builder-convert.1 +share/man/man1/gdk-pixbuf-csource.1 +share/man/man1/gdk-update-icon-cache.1 +share/man/man1/gtk-pixbuf-query-loaders.1 +share/man/man1/gtk-query-immodules-2.0.1 lib/libgdk_pixbuf-@GTK_API_VERSION@.dll.a lib/gdk_pixbuf-@GTK_API_VERSION@.lib lib/libgdk-win32-@GTK_API_VERSION@.dll.a |