based/README.md

19 lines
299 B
Markdown
Raw Normal View History

2022-05-17 00:18:01 +02:00
# based
2022-05-17 00:26:31 +02:00
A commandline tool that lets you encode and decode most of the bases.
2022-05-17 20:58:43 +02:00
Release binary is statically linked via
```sh
cabal v2-build --enable-executable-static
```
2022-05-17 00:26:31 +02:00
## Compilation
2022-05-17 20:58:43 +02:00
* If you want to compile your own build, link it dynamically via
2022-05-17 00:26:31 +02:00
```sh
2022-05-17 20:58:43 +02:00
cd based/
cabal install
2022-05-17 00:26:31 +02:00
cabal run
```