2023-10-21 20:16:43 -05:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
# Ensure that the following lines match the base PKGBUILD
|
|
|
|
|
2023-11-16 13:15:24 -06:00
|
|
|
export retcode=0
|
2023-12-07 13:24:21 -06:00
|
|
|
for term in ^pkgname\= ^replaces\= ^pkgver\= ^epoch\= ^pkgdesc\= ^url\= ^license\= ../LICENSE; do
|
|
|
|
current="$(grep -E "${term}" ./PKGBUILD)"
|
|
|
|
reference="$(grep -E "${term}" /opt/aninix/Uniglot/pacman/PKGBUILD)"
|
|
|
|
diff -w --color=always <(printf "${reference}") <(printf "${current}")
|
2023-11-16 13:15:24 -06:00
|
|
|
export retcode="$(( $retcode || $? ))";
|
|
|
|
if [ "$retcode" != 0 ]; then
|
|
|
|
echo "$term has delta."
|
|
|
|
break;
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
|
|
|
if [ "$(basename "$PWD")" == 'Uniglot' ] && [ "$retcode" != 0 ]; then
|
2023-10-21 20:16:43 -05:00
|
|
|
if [ ! -f /opt/aninix/Uniglot/pacman/PKGBUILD ]; then
|
|
|
|
# Suppress output for this package when it isn't installed yet.
|
|
|
|
echo $0
|
|
|
|
else
|
|
|
|
echo INFO: You have introduced delta for the PKGBUILD. You may need to update downstream projects.
|
|
|
|
exit 0
|
|
|
|
fi
|
|
|
|
elif [ "$retcode" != 0 ]; then
|
|
|
|
echo ERROR: PKGBUILD is out of sync with AniNIX/Uniglot.
|
2023-12-07 13:24:21 -06:00
|
|
|
exit 1
|
2023-10-21 20:16:43 -05:00
|
|
|
fi
|