new: migrated more packages
This commit is contained in:
3
src/build-essential/.gitignore
vendored
Normal file
3
src/build-essential/.gitignore
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
.cache/
|
||||
dist/
|
||||
root/
|
2
src/build-essential/changes.md
Normal file
2
src/build-essential/changes.md
Normal file
@ -0,0 +1,2 @@
|
||||
# 1
|
||||
First version
|
22
src/build-essential/pkg.sh
Normal file
22
src/build-essential/pkg.sh
Normal 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}"
|
||||
}
|
Reference in New Issue
Block a user