From bfac636f78f60edcfc2d425ada43705aeb818000 Mon Sep 17 00:00:00 2001 From: Cem Keylan Date: Sat, 17 Oct 2020 15:32:39 +0300 Subject: mandoc: don't remove less -T support, make it optional --- README.md | 54 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 54 insertions(+) create mode 100644 README.md (limited to 'README.md') diff --git a/README.md b/README.md new file mode 100644 index 0000000..89ec05a --- /dev/null +++ b/README.md @@ -0,0 +1,54 @@ +otools +------ + +Some OpenBSD userland utilities meant to be included in Carbs Linux base. + +Currently includes the following software: +- diff +- doas +- m4 +- mandoc +- md5 +- nc +- patch +- pax +- signify + +You can build software individually by calling 'make ', and the +program will be built to the root directory of the source. The Makefile +is bsdmake compatible. + + +requirements +------------ + +In order to build 'mandoc', you need to either have zlib installed, or edit +config.mk to use the in-source zlib. + +In order to build 'nc', you need to have a libtls implementation. Carbs Linux +uses libtls-bearssl by default. + + +notes +----- + +If you want the manpager to have tags support (doesn't work on busybox less), +you will need to do the following: + + echo CFLAGS += -DHAVE_LESS_T >> config.mk + + +If you are unsure whether your less implementation includes tag support, run +the following: + + :> testfile + less -F -T testfile testfile && echo CFLAGS += -DHAVE_LESS_T >> config.mk + rm testfile + + +patch directory +--------------- + +The patch directory doesn't serve any function but to keep track of the applied +patches under revision control. The sources here are already patched. + -- cgit v1.2.3