fix: add sed as a build-essential depend
This commit is contained in:
parent
75914c310c
commit
50f0ffe6d2
@ -1,2 +1,5 @@
|
|||||||
|
# 2
|
||||||
|
Added missing sed package as a dependency
|
||||||
|
|
||||||
# 1
|
# 1
|
||||||
First version
|
First version
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
# general info
|
# general info
|
||||||
NAME="build-essential"
|
NAME="build-essential"
|
||||||
DESC="Essential packages to build MatterLinux packages"
|
DESC="Essential packages to build MatterLinux packages"
|
||||||
VERSION="1"
|
VERSION="2"
|
||||||
|
|
||||||
# required files
|
# required files
|
||||||
FILES=()
|
FILES=()
|
||||||
@ -9,14 +9,14 @@ HASHES=()
|
|||||||
|
|
||||||
# install and build depends
|
# install and build depends
|
||||||
DEPENDS=(
|
DEPENDS=(
|
||||||
"glibc" "gcc" "make" "python3" "perl"
|
"glibc" "gcc" "make" "python3" "perl" "sed"
|
||||||
"pypa-wheel" "pypa-installer" "pypa-build"
|
|
||||||
"pypa-packaging" "pypi-flit-core" "pypa-setuptools"
|
"pypa-packaging" "pypi-flit-core" "pypa-setuptools"
|
||||||
|
"pypa-wheel" "pypa-installer" "pypa-build"
|
||||||
)
|
)
|
||||||
BUILD=()
|
BUILD=()
|
||||||
|
|
||||||
PACKAGE(){
|
PACKAGE(){
|
||||||
echo This is just a wrapper package, nothing to do
|
echo This is just a wrapper package, nothing to do
|
||||||
install -dm755 "${ROOTDIR}/var/lib/wrapper_packages"
|
install -dm755 "${ROOTDIR}/var/lib/wrapper_packages"
|
||||||
touch "${ROOTDIR}/var/lib/wrapper_packages/${NAME}"
|
echo "${VERSION}" > "${ROOTDIR}/var/lib/wrapper_packages/${NAME}"
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user