You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
473 B
25 lines
473 B
#!/bin/sh
|
|
|
|
# Build zipfiles for libart_lgpl on Win32, runtime and developer.
|
|
|
|
ZIP=/tmp/libart_lgpl-@LIBART_VERSION@.zip
|
|
DEVZIP=/tmp/libart_lgpl-dev-@LIBART_VERSION@.zip
|
|
cd @prefix@
|
|
|
|
rm $ZIP
|
|
|
|
DLLDIR=lib
|
|
[ -f bin/libart_lgpl_2-@LIBART_MAJOR_VERSION@.dll ] && DLLDIR=bin
|
|
|
|
zip -r $ZIP -@ <<EOF
|
|
$DLLDIR/libart_lgpl_2-@LIBART_MAJOR_VERSION@.dll
|
|
EOF
|
|
|
|
rm $DEVZIP
|
|
zip -r $DEVZIP -@ <<EOF
|
|
include/libart-2.0
|
|
lib/libart_lgpl_2.dll.a
|
|
lib/art_lgpl_2.lib
|
|
lib/pkgconfig/libart-2.0.pc
|
|
EOF
|