-
Notifications
You must be signed in to change notification settings - Fork 35
/
config.mk
26 lines (21 loc) · 1 KB
/
config.mk
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# Select how to download files inside the kos-ports tree. Examples are given for
# cURL and wget.
FETCH_CMD = curl --progress-bar -O -L
#FETCH_CMD = wget --progress=bar
# Set the command that will be used for extracting archive files. Currently this
# only must extract .tar.gz archives (although the default will handle more than
# that, most likely).
UNPACK_CMD = tar xf
# Select whether or not to automatically build library dependencies if they are
# not already installed. If this is set to false, then the build system will
# simply output an error message if a dependency is not met. If set to true,
# then the build system will automatically try to build any unmet dependencies
# recursively.
BUILD_DEPENDS = true
# Select whether or not to validate each file downloaded before unpacking them.
# This requires Python to be installed.
VALIDATE_DISTFILES = true
# Autotools host triple. This should generally be the same as the KOS host.
AUTOTOOLS_HOST = $(KOS_CC_PREFIX)
# Command to run python
PYTHON_CMD = python3