Moved verify function as a separate file and renamed it to verifychecksums
This commit is contained in:
parent
7f19a9d366
commit
9e36264f28
2 changed files with 21 additions and 2 deletions
4
bldpkg
4
bldpkg
|
@ -12,7 +12,7 @@ SRCDIR="$PWD"
|
|||
SRCDIRRPATH="$(basename $SRCDIR)"
|
||||
|
||||
# verify checksums
|
||||
verify() {
|
||||
verifychecksums() {
|
||||
if [ -z "$SHA512SUMS" ] ; then
|
||||
echo "sha512 checksums don't exist in $SRCDIRRPATH.SMBuild !"
|
||||
echo "Please run bldpkg genchecksum"
|
||||
|
@ -303,7 +303,7 @@ fi
|
|||
# source $1
|
||||
#fi
|
||||
|
||||
verify
|
||||
verifychecksums
|
||||
#build 2>&1 | tee -a "$APP".SMBuild.log.txt
|
||||
build
|
||||
|
||||
|
|
19
bldpkg.d/verifychecksums
Executable file
19
bldpkg.d/verifychecksums
Executable file
|
@ -0,0 +1,19 @@
|
|||
# verify checksums
|
||||
verifychecksums() {
|
||||
if [ -z "$SHA512SUMS" ] ; then
|
||||
echo "sha512 checksums don't exist in $SRCDIRRPATH.SMBuild !"
|
||||
echo "Please run bldpkg genchecksum"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
eval sums=\"\$SHA512SUMS\"
|
||||
|
||||
echo "Verifying Checksums..."
|
||||
IFS=$'\n'
|
||||
for src in $sums; do
|
||||
echo "$src" | sha512sum -c
|
||||
done
|
||||
unset IFS
|
||||
echo "Looks good..."
|
||||
}
|
||||
|
Loading…
Reference in a new issue