Add sha256sums file storing a list of every file in a package and their checksum

This commit is contained in:
Jeremy Soller 2019-09-07 20:12:07 -06:00
parent 6eb28fa429
commit 9dcafe9aca
No known key found for this signature in database
GPG Key ID: E988B49EE78A7FB1

View File

@ -423,7 +423,16 @@ function op {
echo "depends = []" >> "stage.toml"
fi
rm -rf stage/pkg
mkdir -p stage/pkg
pushd stage > /dev/null
find . -type f | cut -d / -f 2- | sort | while read file
do
sha256sum "$file" >> "pkg/$1.sha256sums"
done
popd > /dev/null
cp -v stage.toml "stage/pkg/$1.toml"
pkg --target=$TARGET create stage
;;