Discarded redundant verifychecksums code from bldpkg

This commit is contained in:
SMLinux 2022-01-29 01:20:03 +05:30
parent ba943ebadf
commit dc73b547c6

19
bldpkg
View file

@ -11,25 +11,6 @@ SRCDIR="$PWD"
# get relative directory name from SRCDIR
SRCDIRRPATH="$(basename $SRCDIR)"
# 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..."
}
# Generate sha512sums in the build file
genchecksum() {
echo "Discarding old SHA512SUMS from $SRCDIRRPATH.SMBuild"