aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authordylan.araps@gmail.com <dylan.araps@gmail.com>2020-02-07 13:42:19 +0000
committerdylan.araps@gmail.com <dylan.araps@gmail.com>2020-02-07 13:42:19 +0000
commite579350762309bc58c7f085598a2307de01ea72a (patch)
tree653b41f59013e42ce39d9a2ea365c61f68caf165 /README.md
parent2fb372ac8ee5987fef01316dcba8f7d875256873 (diff)
downloadcpt-e579350762309bc58c7f085598a2307de01ea72a.tar.gz
docs: update
FossilOrigin-Name: 9b76d37ac647818cfcd77f9947a1a4691c596975e9727e3daf6bccb823c6e87f
Diffstat (limited to 'README.md')
-rw-r--r--README.md47
1 files changed, 42 insertions, 5 deletions
diff --git a/README.md b/README.md
index 1c87049..8133259 100644
--- a/README.md
+++ b/README.md
@@ -84,6 +84,34 @@ export KISS_RM=usr/share/doc:usr/share/gtk-doc:usr/share/info:usr/share/polkit-1
# Set it to '1' to force.
export KISS_FORCE=0
+# Hook into kiss through a script.
+#
+# This can be used set custom CFLAGS per package, modify builds,
+# etc. This environment variable must point to a shellscript.
+#
+# The script will have the following environment variables set.
+#
+# $PKG: Name of the current package .
+# $TYPE: The type of hook (valid: pre-build, post-build).
+# $DEST: The full path to where 'make install' will put the package.
+#
+# Simple example script:
+#
+# case $TYPE in
+# pre-build)
+# case $PKG in
+# zlib) export CFLAGS="-Os -static" ;;
+# curl) export CFLAGS="-O3" ;;
+# esac
+# ;;
+#
+# post-build)
+# # post-build code here.
+# ;;
+# esac
+#
+export KISS_HOOK=/path/to/script
+
# Root directory.
#
# Where installed packages will go. You won't ever need
@@ -92,12 +120,17 @@ export KISS_FORCE=0
# This can be used to have the package manager run in a "fake root".
export KISS_ROOT=/
-# Keep build, package and extraction cache directories for debugging
-# purposes.
+# Keep build logs around for successful builds and not just failing
+# ones. Helpful when debugging.
#
# Set it to '1' to enable.
export KISS_DEBUG=0
+# Force the usage of a different 'sudo' tool.
+#
+# Values: 'su', 'sudo', 'doas'
+export KISS_SU=
+
# Use a reproducible cache naming scheme.
#
# The package manager builds packages inside 'build-$PID/' with '$PID'
@@ -143,12 +176,16 @@ export CXXFLAGS=
export LDFLAGS=
# Make flags.
-# Good value: MAKEFLAGS='-j 4' (number of cores).
+# Good value: MAKEFLAGS='-j4' (number of cores).
export MAKEFLAGS=
+# Ninja (Samurai) flags.
+# Good value: SAMUFLAGS='-j4' (number of cores).
+export SAMUFLAGS=
+
# Cmake Generator.
-# Good value (Ninja): export CMAKE_GENERATOR=Ninja
-# Good value (Makefiles): export CMAKE_GENERATOR=
+# Good value (Ninja): export CMAKE_GENERATOR='Ninja'
+# Good value (Makefiles): export CMAKE_GENERATOR='Unix Makefiles'
export CMAKE_GENERATOR=
```