parrot-extension/BUILD.md
2023-10-31 09:47:07 -06:00

544 B

Development

Reworking.

Using Debian Bookworm (stable/12).

Dependencies

Install OS dependencies.

Perhaps:

sudo apt install \
  git python3-venv python3-virtualenv python3-pip

Python deps:

virtualenv venv
source venv/bin/activate
pip install -U setuptools wheel pip
pip install -r src/requirements.txt

Build

Thusly:

make

Same as:

make all

Build parts, in order:

make foo

Versions

To update versions:

${EDITOR} CHANGELOG
# git tag v0.0.0

Clean

Clean.

make clean