mirror of
https://github.com/clangen/musikcube.git
synced 2024-11-19 20:13:36 +00:00
20d2ead51f
other files accordingly.
43 lines
1.2 KiB
Bash
43 lines
1.2 KiB
Bash
#!/bin/sh
|
|
|
|
VERSION=$1
|
|
|
|
if [ -z "$VERSION" ]; then
|
|
echo "usage: ./archive-win32.sh <version>"
|
|
exit
|
|
fi
|
|
|
|
VANILLA="bin/dist/musikcube_win32_$VERSION"
|
|
MILKDROP="bin/dist/musikcube_win32_with_milkdrop2_$VERSION"
|
|
|
|
rm -rf "$VANILLA"
|
|
rm -rf "$MILKDROP"
|
|
|
|
mkdir -p "$VANILLA/plugins"
|
|
mkdir -p "$VANILLA/themes"
|
|
mkdir -p "$VANILLA/locales"
|
|
cp bin/release/musikcube.exe "$VANILLA"
|
|
cp bin/release/*.dll "$VANILLA"
|
|
cp bin/release/plugins/*.dll "$VANILLA/plugins"
|
|
cp bin/release/themes/*.json "$VANILLA/themes"
|
|
cp bin/release/locales/*.json "$VANILLA/locales"
|
|
rm "$VANILLA/plugins/vis_milk2.dll"
|
|
pushd $VANILLA
|
|
7z a -tzip "musikcube_win32_$VERSION.zip" ./* -mx=9
|
|
mv "musikcube_win32_$VERSION.zip" ..
|
|
popd
|
|
|
|
mkdir -p "$MILKDROP/plugins"
|
|
mkdir -p "$MILKDROP/themes"
|
|
mkdir -p "$MILKDROP/locales"
|
|
cp bin/release/musikcube.exe "$MILKDROP"
|
|
cp bin/release/*.dll "$MILKDROP"
|
|
cp bin/release/plugins/*.dll "$MILKDROP/plugins"
|
|
cp bin/release/themes/*.json "$MILKDROP/themes"
|
|
cp bin/release/locales/*.json "$MILKDROP/locales"
|
|
cp -rfp bin/release/plugins/Milkdrop2 "$MILKDROP/plugins"
|
|
pushd $MILKDROP
|
|
7z a -tzip "musikcube_win32_with_milkdrop2_$VERSION.zip" ./* -mx=9
|
|
mv "musikcube_win32_with_milkdrop2_$VERSION.zip" ..
|
|
popd
|