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