2003-03-22 22:28:13 +01:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
# Build distribution zipfiles for fontconfig on Win32. (This script
|
|
|
|
# obviously needs to be run in Cygwin or similar.) Separate runtime
|
|
|
|
# and developer zipfiles.
|
|
|
|
|
|
|
|
ZIP=/tmp/fontconfig-@VERSION@.zip
|
|
|
|
DEVZIP=/tmp/fontconfig-dev-@VERSION@.zip
|
|
|
|
|
|
|
|
cd @prefix@
|
|
|
|
rm -f $ZIP
|
|
|
|
zip $ZIP -@ <<EOF
|
2008-05-04 05:23:37 +02:00
|
|
|
bin/libfontconfig-@LIBT_CURRENT_MINUS_AGE@.dll
|
2003-03-22 22:28:13 +01:00
|
|
|
etc/fonts/fonts.conf
|
|
|
|
EOF
|
|
|
|
|
|
|
|
rm -f $DEVZIP
|
2009-11-18 20:56:16 +01:00
|
|
|
zip -r -D $DEVZIP -@ <<EOF
|
2003-03-22 22:28:13 +01:00
|
|
|
etc/fonts/fonts.dtd
|
|
|
|
include/fontconfig
|
|
|
|
lib/libfontconfig.dll.a
|
|
|
|
lib/fontconfig.lib
|
|
|
|
lib/fontconfig.def
|
|
|
|
lib/pkgconfig/fontconfig.pc
|
|
|
|
bin/fc-list.exe
|
|
|
|
bin/fc-cache.exe
|
2009-11-18 20:56:16 +01:00
|
|
|
share/man
|
2003-06-14 00:43:28 +02:00
|
|
|
share/doc/fontconfig
|
2003-03-22 22:28:13 +01:00
|
|
|
EOF
|