Compare commits
No commits in common. "06960b6f9c146fd795b91fa21fb6ab9bdf9753a9" and "0af09fcd96f259ccc8b6d8c3398d8812be07716f" have entirely different histories.
06960b6f9c
...
0af09fcd96
|
@ -6,5 +6,3 @@
|
||||||
/sounds/*.wav
|
/sounds/*.wav
|
||||||
/sounds.zip
|
/sounds.zip
|
||||||
/lull.zip
|
/lull.zip
|
||||||
/dist/
|
|
||||||
/package/
|
|
||||||
|
|
19
build.sh
19
build.sh
|
@ -1,16 +1,15 @@
|
||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
mkdir dist
|
|
||||||
|
|
||||||
cargo build --release
|
cargo build --release
|
||||||
|
cp target/release/lull .
|
||||||
|
strip lull
|
||||||
|
|
||||||
mkdir dist/linux
|
# zip (itch desktop)
|
||||||
|
zip -r lull-linux.zip README.md LICENSE lull
|
||||||
|
# tar.gz (downloadable)
|
||||||
|
rm lull-linux.tar.gz
|
||||||
|
tar -czvf lull-linux.tar.gz README.md LICENSE lull
|
||||||
|
|
||||||
cp target/release/lull dist/linux
|
rm lull
|
||||||
cp README.md dist/linux
|
|
||||||
cp LICENSE dist/linux
|
|
||||||
strip dist/linux/lull
|
|
||||||
|
|
||||||
mkdir dist/sounds
|
zip -r sounds.zip SOUNDS.md sounds/*.mp3
|
||||||
|
|
||||||
cp sounds/*.mp3 SOUNDS.md dist/sounds
|
|
||||||
|
|
Loading…
Reference in New Issue