https://github.com/devkitpro/wut-tools
https://github.com/devkitpro/wut-tools
Last synced: 10 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/devkitpro/wut-tools
- Owner: devkitPro
- License: gpl-2.0
- Created: 2019-01-14T15:23:09.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2023-03-07T20:13:44.000Z (almost 3 years ago)
- Last Synced: 2024-05-01T23:55:47.167Z (over 1 year ago)
- Language: C++
- Size: 260 KB
- Stars: 9
- Watchers: 8
- Forks: 10
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE.md
Awesome Lists containing this project
README
[](https://github.com/devkitPro/wut-tools/actions?workflow=C%2FC%2B%2B+CI)
# wut-tools
Tools for [wut](https://github.com/devkitPro/wut).
Licensed under the terms of the GNU General Public License, version 2 or later (GPLv2+).
## Install
It is recommended to install wut by using the [devkitPro package manager](https://devkitpro.org/wiki/devkitPro_pacman)
```
sudo dkp-pacman -Syu wut-tools
```
## Building
### Dependencies
- autoconf
- libtool
- libz-dev
- pkg-config
### Building
For development purposes you may want to build this from source and replace your existing wut-tools installation:
```
dkp-pacman -R wut-tools
./autogen.sh
mkdir build
cd build
../configure --prefix=$DEVKITPRO/tools
make install
```