wares is a declarative AppImage/binary package manager!
To install, just grab the binary for your operating system from the Releases section on the right.
Run the following to check that everything is in order:
/path/to/wares doctorIf it tells you that ~/Wares is not in your $PATH, please add it.
Then, create ~/.config/wares and paste the following into ~/.config/wares/config.yaml:
wares:
wares:
name: wares
repo: indium114/wares
asset: "wares_Linux_x86_64"Replace Linux_x86_64 with Darwin_aarch64 if you're on a Mac with Apple Silicon, or Darwin_x86_64 if you're on an Intel Mac.
Then, run /path/to/wares sync to download Wares, and it will now manage itself.
To install a package, add it to the wares section of config.yaml.
For example, here's me installing Helix using wares
wares:
hx:
name: hx # Name of the program
repo: helix-editor/helix # GitHub repo (without github.com)
asset: "*.AppImage" # Pattern which will match the downloaded asset you would like
# For example, using "*Linux-x86_64*" will match with any file containing the substring `Linux-x86_64` in its nameInstalling an Archive (.tar.gz) is the same as installing as installing an AppImage.
In this example, I'll be installing Lazygit, which is packaged in .tar.gz format
wares:
lazygit:
name: lazygit # Name of the executable file inside .tar.gz archive that you want to use
repo: jesseduffield/lazygit # GitHub repo (without github.com)
asset: "lazygit_*_linux_x86_64.tar.gz" # Pattern which will match the downloaded asset you would like
# For example, using "*Linux-x86_64*" will match with any file containing the substring `Linux-x86_64` in its nameSome .tar.gz-archived packages may include a top-level directory, usually named the same things as the archive itself.
To remedy this, you can set removetoplevel: true under a ware.
In this example, I'll be installing the GitHub CLI, which is packaged like this.
wares:
gh:
name: bin/gh
repo: cli/cli
asset: "gh_*_linux_amd64.tar.gz"
removetoplevel: true # This is the important part for this archive.If you want to know if a particular package does this or not, download and extract the archive for yourself.
If your .tar.gz archive has multiple files that all need to be symlinked, you can use the multiple attribute.
When using multiple, a new directory named after the package will be created, into which the contents of the archive will be symlinked.
Ensure that
~/Wares/<package name>is in your $PATH for this to work.
In this example, I'll be installing Cubyz, which is packaged in .tar.gz format and requires multiple artifacts.
wares:
Cubyz: # Name of the directory that the artifacts will be symlinked into inside ~/Wares
name: Cubyz # Not very useful for multi-artifact, but can't be empty
repo: pixelguys/cubyz # GitHub repo (without github.com)
multiple: true # Denotes that *all* files in the archive must be symlinked
asset: "Linux-x86_64.tar.gz" # Pattern which will match the downloaded asset you would like
# For example, using "*Linux-x86_64*" will match with any file containing the substring `Linux-x86_64` in its nameTo update packages, run the following command:
wares updateThis will update the version in pallet.lock. Now just sync to install the new version:
wares sync