23 lines
483 B
Bash
23 lines
483 B
Bash
# general info
|
|
NAME="build-essential"
|
|
DESC="Essential packages to build MatterLinux packages"
|
|
VERSION="1"
|
|
|
|
# required files
|
|
FILES=()
|
|
HASHES=()
|
|
|
|
# install and build depends
|
|
DEPENDS=(
|
|
"glibc" "gcc" "make" "python3" "perl"
|
|
"cmake" "pypa-wheel" "pypa-installer"
|
|
"pypa-build" "pypa-setuptools"
|
|
)
|
|
BUILD=()
|
|
|
|
PACKAGE(){
|
|
echo This is just a wrapper package, nothing to do
|
|
install -dm755 "${ROOTDIR}/var/lib/wrapper_packages"
|
|
touch "${ROOTDIR}/var/lib/wrapper_packages/${NAME}"
|
|
}
|