-
Notifications
You must be signed in to change notification settings - Fork 44
/
haikuports-sample.conf
73 lines (63 loc) · 2.18 KB
/
haikuports-sample.conf
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
# Example HaikuPorts configuration
#
# =============
# Installation:
# 1) cp haikuports-sample.conf ~/config/settings/haikuports.conf
#
# 2) customize your settings:
# lpe ~/config/settings/haikuports.conf
# ==================
# Tip:
#
# Put this into your ~/config/settings/profile to search for a string in all
# recipes with "inrecipe {searchstring}" and build a package with
# "hp {packagename}" (adjust your /path/to/your/haikuports/):
#
# function inpatch () { grep -rni $1 /path/to/your/haikuports/*/*/patches/*; }
# function inrecipe { find /path/to/your/haikuports -maxdepth 3 \
# -name "*.recipe" | xargs grep -ni --col $1; }
#
# alias hp="haikuporter -S -j8 --no-source-packages --get-dependencies"
# ==================
# Required settings:
#
# --------------
# TREE_PATH:
# The full path to your cloned haikuports tree.
TREE_PATH="/boot/home/haikuports"
# --------------
# PACKAGER:
# Your name and email
PACKAGER="My Name <[email protected]>"
# ==================
# Optional settings:
# --------------
# VENDOR:
# Sets a custom VENDOR tag that will be inserted into all built packages
# ("Haiku Project" by default).
#VENDOR="Haiku Project"
# --------------
# ALLOW_UNTESTED:
# Allow build of untested recipes. '?x86' for example
#ALLOW_UNTESTED="yes"
# --------------
# ALLOW_UNSAFE_SOURCES:
# Allow building from unsafe sources. Setting this to yes allows
# downloading sources for which there is no possibility to check if they
# have been corrupted or tampered with.
#
# Only set this to yes if you really need this and know what you're doing,
# for example if you want to build recipes for development versions that
# fetch the head from a repository.
#ALLOW_UNSAFE_SOURCES="yes"
# --------------
# TARGET_ARCHITECTURE:
# The primary architectures you wish to compile recipes for.
# Defaults to the current primary platform.
#TARGET_ARCHITECTURE="x86_gcc2"
# --------------
# SECONDARY_TARGET_ARCHITECTURES:
# Secondary platforms you wish to build packages for (one per line)
# Example is x86 (gcc4) packages on a x86_gcc2 (gcc2) system
# Default is no secondary target architectures.
#SECONDARY_TARGET_ARCHITECTURES="x86"