https://github.com/deathbeam/runelite-launcher
One click :tm: cross-platform launcher for RuneLite
https://github.com/deathbeam/runelite-launcher
darwin golang launcher linux macos windows
Last synced: 3 months ago
JSON representation
One click :tm: cross-platform launcher for RuneLite
- Host: GitHub
- URL: https://github.com/deathbeam/runelite-launcher
- Owner: deathbeam
- License: bsd-2-clause
- Created: 2018-02-07T12:12:02.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2018-02-23T11:54:46.000Z (over 8 years ago)
- Last Synced: 2026-03-04T09:52:07.560Z (4 months ago)
- Topics: darwin, golang, launcher, linux, macos, windows
- Language: Go
- Homepage: https://runelite.net
- Size: 235 KB
- Stars: 3
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# runelite-launcher
[](https://jitpack.io/#deathbeam/runelite-launcher)

## Running
Download runelite-launcher for your platform from the
[releases page](https://github.com/deathbeam/runelite-launcher/releases).
## Building
```shell
mvn clean install
```
This will build distribution for all major platforms (linux32, linux64, windows32, windows64, darwin)
and runelite-launcher for your current platform.
#### Launching the built launcher
```
./runelite-launcher/target/runelite-launcher-1.0.0-SNAPSHOT
```
#### Cross-compiling launcher
For cross-compilation of GUI launcher, you will need [Docker](https://www.docker.com/).
Now, you need to pull docker image maven will use for cross-compilation:
```
docker pull karalabe/xgo-latest
```
Now, you also need to install [NSIS](http://nsis.sourceforge.net/Main_Page) for
compiler to be able to create Windows Installer. You also need to amke sure that
after installation of NSIS, the `makensis` executable is on your `PATH`.
Now, to actually cross-compile to all platforms (linux32, linux64, windows32, windows64, darwin), run
```
mvn clean install -Pcross
```