This commit is contained in:
2025-06-02 14:22:23 -07:00
parent a34a891738
commit 203449fbf9
3 changed files with 9 additions and 2 deletions

1
.gitignore vendored
View File

@ -1,2 +1,3 @@
.idea .idea
epoch-linux epoch-linux
epoch-linux.tar.gz

View File

@ -7,7 +7,7 @@ Linux updater and launcher for [Project Epoch](https://www.project-epoch.net/)
1. Set up a copy of WoW 3.3.5 in a wine prefix or launcher of your choice. Chromiecraft has a good torrent you can use for the 3.3.5 client 1. Set up a copy of WoW 3.3.5 in a wine prefix or launcher of your choice. Chromiecraft has a good torrent you can use for the 3.3.5 client
2. Install `epoch-linux` by either 2. Install `epoch-linux` by either
1. Download the latest binary from the [releases](https://git.burkey.co/eburk/epoch-linux/releases) page 1. Download the latest binary from the [releases](https://git.burkey.co/eburk/epoch-linux/releases) page
2. If you have the `go` toolchain installed, you can run `go get git.burkey.co/eburk/epoch-linux@latest` to install to your `$GOROOT` 2. If you have the `go` toolchain installed, you can run `go install git.burkey.co/eburk/epoch-linux` to install to your `$GOROOT`
3. Compile the source yourself 3. Compile the source yourself
3. Run `epoch-linux` once. This will create a config file at `$HOME/.config/epoch-linux/config.toml`. Change the `WowDir` variable to your Wow game directory 3. Run `epoch-linux` once. This will create a config file at `$HOME/.config/epoch-linux/config.toml`. Change the `WowDir` variable to your Wow game directory
4. Run `epoch-linux` again. It will download the patch files from Epoch's servers to your Wow directory 4. Run `epoch-linux` again. It will download the patch files from Epoch's servers to your Wow directory

6
release.sh Executable file
View File

@ -0,0 +1,6 @@
#!/usr/bin/env sh
set -e
GOOS=linux GOARCH=amd64 go build
tar czvf epoch-linux.tar.gz ./epoch-linux