diff options
author | Timothy Pearson <[email protected]> | 2011-12-07 18:20:23 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2011-12-07 18:20:23 -0600 |
commit | a9eaee5264ab9f85e01789409ff3c6239262fe82 (patch) | |
tree | 2f3f4114a8a97613c81392c69fa26a2353716f37 /libart-zip.in | |
download | libart-lgpl-a9eaee5264ab9f85e01789409ff3c6239262fe82.tar.gz libart-lgpl-a9eaee5264ab9f85e01789409ff3c6239262fe82.zip |
Initial import of libart 2.3.21
Diffstat (limited to 'libart-zip.in')
-rwxr-xr-x | libart-zip.in | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/libart-zip.in b/libart-zip.in new file mode 100755 index 0000000..7dfd048 --- /dev/null +++ b/libart-zip.in @@ -0,0 +1,24 @@ +#!/bin/sh + +# Build zipfiles for libart_lgpl on Win32, runtime and developer. + +ZIP=/tmp/libart_lgpl-@[email protected] +DEVZIP=/tmp/libart_lgpl-dev-@[email protected] +cd @prefix@ + +rm $ZIP + +DLLDIR=lib +[ -f bin/libart_lgpl_2-@[email protected] ] && DLLDIR=bin + +zip -r $ZIP -@ <<EOF +$DLLDIR/libart_lgpl_2-@[email protected] +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 |