~ubuntu-branches/ubuntu/lucid/fontconfig/lucid

« back to all changes in this revision

Viewing changes to fontconfig-zip.in

  • Committer: Bazaar Package Importer
  • Author(s): Fabio M. Di Nitto
  • Date: 2004-10-07 06:04:17 UTC
  • Revision ID: james.westby@ubuntu.com-20041007060417-dliqa1ebkoh7isns
Tags: upstream-2.2.2
ImportĀ upstreamĀ versionĀ 2.2.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/sh
 
2
 
 
3
# Build distribution zipfiles for fontconfig on Win32. (This script
 
4
# obviously needs to be run in Cygwin or similar.) Separate runtime
 
5
# and developer zipfiles.
 
6
 
 
7
ZIP=/tmp/fontconfig-@VERSION@.zip
 
8
DEVZIP=/tmp/fontconfig-dev-@VERSION@.zip
 
9
 
 
10
cd @prefix@
 
11
rm -f $ZIP
 
12
zip $ZIP -@ <<EOF
 
13
lib/libfontconfig-@LT_CURRENT_MINUS_AGE@.dll
 
14
etc/fonts/fonts.conf
 
15
EOF
 
16
 
 
17
rm -f $DEVZIP
 
18
zip -r $DEVZIP -@ <<EOF
 
19
etc/fonts/fonts.dtd
 
20
include/fontconfig
 
21
lib/libfontconfig.dll.a
 
22
lib/fontconfig.lib
 
23
lib/fontconfig.def
 
24
lib/pkgconfig/fontconfig.pc
 
25
bin/fc-list.exe
 
26
bin/fc-cache.exe
 
27
man/man1/fc-cache.1
 
28
man/man1/fc-list.1
 
29
man/man3/fontconfig.3
 
30
EOF