Skip to content

Commit

Permalink
Add cache folder and update extraction commands for different operati…
Browse files Browse the repository at this point in the history
…ng systems
  • Loading branch information
fire committed Oct 29, 2023
1 parent aa8acca commit eed99fa
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
12 changes: 11 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,19 @@ To extract the V-Sekai game, follow these steps:
```bash
git clone https://github.com/V-Sekai/casync-v-sekai-game.git
cd casync-v-sekai-game
./extract.sh
mkdir -p ~/.local/casync-store # Add a cache folder
# windows operating system
./thirdparty/desync_0.9.5_windows_amd64/desync untar --no-same-owner --cache ~/.local/casync-store --store https://v-sekai.github.io/casync-v-sekai-game/store --index https://github.com/V-Sekai/casync-v-sekai-game/raw/main/vsekai_game_windows_x86_64.caidx vsekai_game_windows_x86_64
# Linux operating system
./thirdparty/desync_0.9.5_linux_amd64/desync untar --no-same-owner --cache ~/.local/casync-store --store https://v-sekai.github.io/casync-v-sekai-game/store --index https://github.com/V-Sekai/casync-v-sekai-game/raw/main/vsekai_game_linux_x86_64.caidx vsekai_game_linux_x86_64
# Macos is not functional
./thirdparty/desync_0.9.5_darwin_amd64/desync untar --no-same-owner --cache ~/.local/casync-store --store https://v-sekai.github.io/casync-v-sekai-game/store --index https://github.com/V-Sekai/casync-v-sekai-game/raw/main/vsekai_game_macos_x86_64.caidx vsekai_game_macos_x86_64
```

## Update repository

1. Use the `build.sh` script in this repository.

## Related Projects

Here are some projects that are related and you might find interesting:
Expand Down
1 change: 0 additions & 1 deletion extract.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ extract_and_build() {
mkdir -p $1 ~/.local/casync-store
chmod +x ./$DESYNC_COMMAND
$DESYNC_COMMAND untar --no-same-owner --cache ~/.local/casync-store --store store --index $1.caidx $1/
# $DESYNC_COMMAND untar --no-same-owner --cache ~/.local/casync-store --store https://v-sekai.github.io/casync-v-sekai-game/store --index $1.caidx $1/
}

# Detect the operating system
Expand Down

0 comments on commit eed99fa

Please sign in to comment.