2016-12-20 06:50:37 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
VERSION=$1
|
|
|
|
|
|
|
|
if [ -z "$VERSION" ]; then
|
|
|
|
echo "usage: ./archive-win32.sh <version>"
|
|
|
|
exit
|
|
|
|
fi
|
|
|
|
|
2017-02-25 04:57:07 +00:00
|
|
|
VANILLA="bin/dist/musikbox_win32_$VERSION"
|
2017-03-27 03:53:05 +00:00
|
|
|
MILKDROP="bin/dist/musikbox_win32_with_milkdrop2_$VERSION"
|
2016-12-20 06:50:37 +00:00
|
|
|
|
|
|
|
rm -rf "$VANILLA"
|
|
|
|
rm -rf "$MILKDROP"
|
|
|
|
|
|
|
|
mkdir -p "$VANILLA/plugins"
|
2017-03-16 04:10:28 +00:00
|
|
|
mkdir -p "$VANILLA/themes"
|
|
|
|
mkdir -p "$VANILLA/locales"
|
2016-12-20 06:50:37 +00:00
|
|
|
cp bin/release/musikbox.exe "$VANILLA"
|
|
|
|
cp bin/release/plugins/*.dll "$VANILLA/plugins"
|
2017-03-16 04:10:28 +00:00
|
|
|
cp bin/release/themes/*.json "$VANILLA/themes"
|
|
|
|
cp bin/release/locales/*.json "$VANILLA/locales"
|
2016-12-20 06:50:37 +00:00
|
|
|
rm "$VANILLA/plugins/vis_milk2.dll"
|
2017-02-25 04:57:07 +00:00
|
|
|
pushd $VANILLA
|
|
|
|
7z a -tzip "musikbox_win32_$VERSION.zip" ./* -mx=9
|
|
|
|
mv "musikbox_win32_$VERSION.zip" ..
|
|
|
|
popd
|
2016-12-20 06:50:37 +00:00
|
|
|
|
|
|
|
mkdir -p "$MILKDROP/plugins"
|
2017-03-16 04:10:28 +00:00
|
|
|
mkdir -p "$MILKDROP/themes"
|
|
|
|
mkdir -p "$MILKDROP/locales"
|
2016-12-20 06:50:37 +00:00
|
|
|
cp bin/release/musikbox.exe "$MILKDROP"
|
|
|
|
cp bin/release/plugins/*.dll "$MILKDROP/plugins"
|
2017-03-16 04:10:28 +00:00
|
|
|
cp bin/release/themes/*.json "$MILKDROP/themes"
|
|
|
|
cp bin/release/locales/*.json "$MILKDROP/locales"
|
2016-12-20 06:50:37 +00:00
|
|
|
cp -rfp bin/release/plugins/Milkdrop2 "$MILKDROP/plugins"
|
2017-02-25 04:57:07 +00:00
|
|
|
pushd $MILKDROP
|
2017-03-27 03:53:05 +00:00
|
|
|
7z a -tzip "musikbox_win32_with_milkdrop2_$VERSION.zip" ./* -mx=9
|
|
|
|
mv "musikbox_win32_with_milkdrop2_$VERSION.zip" ..
|
2017-02-25 04:57:07 +00:00
|
|
|
popd
|