mirror of
https://github.com/clangen/musikcube.git
synced 2024-11-19 11:10:52 +00:00
33 lines
821 B
Bash
33 lines
821 B
Bash
#!/bin/sh
|
|
|
|
VERSION=$1
|
|
|
|
if [ -z "$VERSION" ]; then
|
|
echo "usage: ./archive-win32.sh <version>"
|
|
exit
|
|
fi
|
|
|
|
VANILLA="bin/dist/musikbox_win32_$VERSION"
|
|
MILKDROP="bin/dist/musikbox_with_milkdrop2_win32_$VERSION"
|
|
|
|
rm -rf "$VANILLA"
|
|
rm -rf "$MILKDROP"
|
|
|
|
mkdir -p "$VANILLA/plugins"
|
|
cp bin/release/musikbox.exe "$VANILLA"
|
|
cp bin/release/plugins/*.dll "$VANILLA/plugins"
|
|
rm "$VANILLA/plugins/vis_milk2.dll"
|
|
pushd $VANILLA
|
|
7z a -tzip "musikbox_win32_$VERSION.zip" ./* -mx=9
|
|
mv "musikbox_win32_$VERSION.zip" ..
|
|
popd
|
|
|
|
mkdir -p "$MILKDROP/plugins"
|
|
cp bin/release/musikbox.exe "$MILKDROP"
|
|
cp bin/release/plugins/*.dll "$MILKDROP/plugins"
|
|
cp -rfp bin/release/plugins/Milkdrop2 "$MILKDROP/plugins"
|
|
pushd $MILKDROP
|
|
7z a -tzip "musikbox_with_milkdrop2_win32_$VERSION.zip" ./* -mx=9
|
|
mv "musikbox_with_milkdrop2_win32_$VERSION.zip" ..
|
|
popd
|