We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
maybe a linux binary or a verbatim compilation guide ??
The text was updated successfully, but these errors were encountered:
In todo list
Sorry, something went wrong.
Probably I can help....
Works on Ubuntu 24.04
#!/bin/bash target_dir=${HOME}/TEMP/minecraft-server mkdir -p ${target_dir} chmod 777 ${target_dir} cd ${target_dir} sudo apt-get install -y git cargo-1.80 rustup rustc-1.80 pkgconf libglib2.0-dev libgtk-3-dev libssl-dev libsoup-3.0-dev libjavascriptcoregtk-4.1-dev libwebkit2gtk-4.1-dev latest_version="$(curl -skL https://github.com/louis-e/arnis/releases/latest | grep '<title>' | sed 's|.*<title>.*(\(.*\)).*<\/title>.*|\1|')" wget https://github.com/louis-e/arnis/archive/refs/tags/${latest_version}.tar.gz mkdir -p arnis-${latest_version} tar -xzf ${latest_version}.tar.gz -C arnis-${latest_version} --strip-components=1 sleep 3 cd ./arnis-${latest_version} rustup default 1.80 export RUSTUP_TOOLCHAIN=stable cargo fetch export CARGO_TARGET_DIR=target cargo build --release # After build is ready: # For the CMD: cargo run --release -- --path="C:/YOUR_PATH/.minecraft/saves/worldname" --bbox="min_lng,min_lat,max_lng,max_lat" # For the GUI: cargo run --release
Duplicate of #106
No branches or pull requests
maybe a linux binary or a verbatim compilation guide ??
The text was updated successfully, but these errors were encountered: