aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--config.def15
1 files changed, 5 insertions, 10 deletions
diff --git a/config.def b/config.def
index f1c2115..463a9ae 100644
--- a/config.def
+++ b/config.def
@@ -9,8 +9,8 @@ MNTDIR="$PWD/rootfs"
# List of packages to be installed
# Most of those are already dependencies of each other but it is not a bad idea
# to put them to the list anyway.
-PKGS="baselayout cpt musl gcc make gzip xz zlib bzip2 binutils byacc curl \
- linux-headers m4 flex busybox pkgconf rsync libressl git"
+PKGS="baselayout musl otools cl-utils b3sum cpt gcc make pigz xz zlib bzip2 binutils
+ byacc libressl curl linux-headers flex busybox pkgconf rsync git"
# BUILD FLAGS
# It is a good idea to not use flags like "native". If you plan on using the
@@ -27,20 +27,15 @@ MAKEFLAGS="-j$(nproc)"
# Repository
# This repository will be cloned to /tmp/repo on the host. It is optional.
-REPO="rsync://carbslinux.org/repo"
+REPO="https://git.carbslinux.org/repository"
# Host repo path is the repository to use when building packages.
HOST_REPO_PATH="/tmp/repo/core"
export MNTDIR PKGS CFLAGS CXXFLAGS REPO HOST_REPO_PATH MAKEFLAGS
postinstall() {
- # You can preferably add some custom # commands if you want a
- # postinstall procedure. This runs right after cpt-install is complete.
-
- # Currently default function is 'true' because there is nothing else to
- # be done, but you can safely remove it if you will be adding some
- # post-installation commands.
- true
+ # Switch to busybox grep as OpenBSD grep is too POSIX for some build systems
+ cpt a busybox /usr/bin/grep
}
# vim:filetype=sh