get is a mini package manager that is used as the backend to Homebrew App Store to allow more formal package management.
libget is intended for use in smaller systems, such as homebrew'd video game consoles, where there is code execution but not a full stack of tools that package managers usually utilize, such as shell scripts or external libraries.
For documentation, metadata syntax, and repo setup, see the wiki.
Versions of the get client 2.0.0 and after can support non-libget repo formats. See the "Example Local Repo JSONs" file below for how to specify other repo types.
A "repos.json" file should be present on the local machine, in the same directory as the get
binary. See repos.json for what this file should look like. If this file does not exist, depending on the use case (such as on the Wii U) a default repos.json should automatically be generated.
Below are three example repos. The first two are libget repos used by the Switch and WiiU homebrew appstores, and the third and fourth are OSC / Universal-DB repos used by the Wii / 3DS.
WiiU Homebrew CDN (libget Repo)
{
"repos": [{
"name":"WiiU ForTheUsers Repo",
"url":"https://wiiu.cdn.fortheusers.org",
"type":"get",
"enabled":true
}]
}
Switch Homebrew CDN (libget Repo)
{
"repos": [{
"name":"Switch ForTheUsers Repo",
"url":"https://switch.cdn.fortheusers.org",
"type":"get",
"enabled":true
}]
}
Wii Open Shop Channel (OSC Repo) (WIP)
{
"repos": [{
"name":"Wii OSC Repo",
"url":"https://hbb1.oscwii.org/api/v3/contents",
"type":"osc",
"enabled":true
}]
}
3DS Universal-DB (Unistore Repo) (WIP)
{
"repos": [{
"name":"3DS Universal-DB",
"url":"https://db.universal-team.net/data/full.json",
"type":"unistore",
"enabled":true
}]
}
When get
runs, it will go through the enabled repos in that config file, and try to make a GET request to /repo.json
, which should contain (on the remote server) a listing of all of the packages and descriptions. Here is an example of what the remote's repo.json with one package looks like:
{
"packages": [
{
"name": "space",
"title": "Space Game",
"author": "vgmoose",
"description": "Shoot rocks in outer space, and stuff",
"version": "1.0.0"
}
]
}
The python script repogen.py can generate the above repo.json file and the zip file structure explained below. It turns folders in the packages directory into zip files in zips
.
Installing a package requires the desired package name to exist in one of the repos, and for a GET to /zips/$PKG_NAME.zip
to resolve. For example, to download the package space
from above, the following command would be used:
./get space
It will try to fetch /zips/space.zip
from the repo that contains the space
package, and save it in sd:/
.
All available remote packages and their current status on disk will be listed.
./get -l
Search for a given string in the remote packages' name and description.
./get -s spa
Any installed packages specified after the --delete
flag will be removed
./get --delete space
This command parses the manifest.install
file fetched when the package was installed, and uses it to determine which files to remove. Currently empty folders are left behind after the files are deleted.
The following system-level dependencies are needed: zlib and libcurl. After obtaining those, it should be as straightforward as cloning the repo and running make:
git clone https://gitlab.com/4tu/libget.git
cd libget
make
The get CLI binary should now be sitting in: ./get
This project also makes use of these libraries: rapidjson, minizip, and for some platforms tinyxml. These libraries' sources are included in this repo in the ./src/libs
folder, and automatically included by the makefile.
TODO: point those libraries to their respective git repos via submodules.
The easiest way to include the project is to use Buck and Buckaroo in your project, and run:
buckaroo add github.com/vgmoose/libget
But you can also manually include it by downloading the repo and pointing to the root folder in your Makefile. See Makefile for information on how the library can be used from a GNU Makefile.
This software is licensed under the GPLv3.
Contributors:
- rw-r-r_0644 - manifest file parsing code
- zarklord - zip folder extraction library
It's not required, but running a clang-format before making a PR helps to clean up styling issues:
find . \( -name "*.cpp" -or -name "*.hpp" \) -not -path "./src/libs/*" -exec clang-format -i {} \;