blob: c6d694d96a574ea4e3afb1144ce22373e83aae0b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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
|