An open API service indexing awesome lists of open source software.

https://github.com/devkitpro/wut-tools


https://github.com/devkitpro/wut-tools

Last synced: 10 months ago
JSON representation

Awesome Lists containing this project

README

          

[![Build status](https://github.com/devkitPro/wut-tools/workflows/C/C++%20CI/badge.svg?branch=master)](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
```