forked from KallistiOS/kos-ports
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.mk
23 lines (19 loc) · 979 Bytes
/
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
# Select how to download files inside the kos-ports tree. Examples are given for
# cURL and wget.
FETCH_CMD = curl --progress-bar -O
#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)