22 lines
773 B
Bash
22 lines
773 B
Bash
#!/bin/sh
|
|
name="base"
|
|
short_desc="Base meta-package"
|
|
desc="Meta-package to install a base system that can be chrooted into
|
|
|
|
Contains /etc/os-release"
|
|
category="system"
|
|
version="1.0-CURRENT_1"
|
|
maintainer="ffqq@danwin1210.de"
|
|
www="Basalt Linux Project"
|
|
master_site="N/A"
|
|
license_logic="single" # accepted values: single, and, or
|
|
licenses=("N/A")
|
|
|
|
build_dependencies=()
|
|
run_dependencies=("system/glibc" "system/chimerautils" "www/certs" "system/etc" "system/pkg" "sysutils/bc-gh" "sysutils/libelf" "sysutils/find" "archivers/bzip2" "archivers/libarchive" "archivers/xz" "archivers/zlib" "archivers/zstd" "security/pam" "security/shadow")
|
|
|
|
build_process(){
|
|
echo "Wow"
|
|
mkdir -pv $TAMANDUA_STAGE_DIR/etc
|
|
cp -v $TAMANDUA_FILES_DIR/os-release $TAMANDUA_STAGE_DIR/etc/
|
|
} |