new: migrated more packages

This commit is contained in:
ngn
2024-07-22 21:38:11 +03:00
parent beea0545f8
commit 07d499fef5
32 changed files with 618 additions and 1 deletions

3
src/build-essential/.gitignore vendored Normal file
View File

@ -0,0 +1,3 @@
.cache/
dist/
root/

View File

@ -0,0 +1,2 @@
# 1
First version

View File

@ -0,0 +1,22 @@
# 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=()
build(){
echo This is just a wrapper package, nothing to do
install -dm755 "${ROOTDIR}/var/lib/wrapper_packages"
touch "${ROOTDIR}/var/lib/wrapper_packages/${NAME}"
}