1
0
Fork 0
frozenports/system/etc/SCHEMATIC

21 lines
559 B
Plaintext
Raw Permalink Normal View History

2024-01-22 10:46:08 +00:00
#!/bin/sh
name="etc"
short_desc="Necessary /etc files (do NOT uninstall)"
desc="This package contains the necessary files required for user management. The contents are:
/etc/passwd
/etc/group"
2024-01-22 10:46:08 +00:00
category="system"
version="KROS"
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")
build_process() {
mkdir -p $TAMANDUA_STAGE_DIR/etc
2024-01-22 10:46:08 +00:00
cp $TAMANDUA_FILES_DIR/{group,passwd} $TAMANDUA_STAGE_DIR/etc
}