LPSCBuilder/README.md

39 lines
772 B
Markdown
Raw Permalink Normal View History

2022-07-25 01:41:15 +02:00
# OwlTestRunner
2022-07-25 19:52:21 +02:00
A test runner for it's usage for testing C.
## Requirements
### Gentoo
```shell
sudo emerge -a sys-libs/db
```
### Debian-like
```shell
sudo apt update
2022-07-25 19:59:11 +02:00
sudo apt install libdb-dev build-essentials libcpanplus-dist-build-perl
2022-07-25 19:52:21 +02:00
```
## Installing
Clone this repo and cd into the cloned directory and run:
```shell
cpan .
```
If it is the first time using cpan it will prompt you to some questions about
how do you want to setup cpan.
If you choose local::lib, after answering them restart your shell or
source ~/.bashrc, if using a non-bash shell you may have to add manually the
appropiate environment variables to your shell's rc, you can get those by issuing the
following command:
```shell
PERL5LIB="$HOME/perl5/lib/perl5" perl -Mlocal::lib
```