mirror of
https://github.com/BastilleBSD/bastille.git
synced 2025-12-12 01:49:51 +01:00
45 lines
854 B
ReStructuredText
45 lines
854 B
ReStructuredText
Installation
|
|
============
|
|
Bastille is available in the official FreeBSD ports tree at
|
|
`sysutils/bastille`. Binary packages available in `quarterly` and `latest`
|
|
repositories.
|
|
|
|
Current version is `0.6.20200202`.
|
|
|
|
To install from the FreeBSD package repository:
|
|
|
|
* quarterly repository may be older version
|
|
* latest repository will match recent ports
|
|
|
|
|
|
PKG
|
|
---
|
|
|
|
.. code-block:: shell
|
|
|
|
pkg install bastille
|
|
|
|
|
|
To install from source (don't worry, no compiling):
|
|
|
|
ports
|
|
-----
|
|
|
|
.. code-block:: shell
|
|
|
|
make -C /usr/ports/sysutils/bastille install clean
|
|
|
|
|
|
GIT
|
|
---
|
|
|
|
.. code-block:: shell
|
|
|
|
git clone https://github.com/BastilleBSD/bastille.git
|
|
cd bastille
|
|
make install
|
|
|
|
This method will install the latest files from GitHub directly onto your
|
|
system. It is verbose about the files it installs (for later removal), and also
|
|
has a `make uninstall` target.
|