mlocate: Add message for absence of mlocate.db (#8190)

This commit is contained in:
xtkoba 2021-12-09 23:46:45 +09:00 committed by GitHub
parent 7ddce9332f
commit 81db6538d9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -7,7 +7,7 @@ TERMUX_PKG_MAINTAINER="@termux"
# like in '*.deb'. # like in '*.deb'.
TERMUX_PKG_DEPENDS="libandroid-support" TERMUX_PKG_DEPENDS="libandroid-support"
TERMUX_PKG_VERSION=0.26 TERMUX_PKG_VERSION=0.26
TERMUX_PKG_REVISION=4 TERMUX_PKG_REVISION=5
TERMUX_PKG_SRCURL=https://releases.pagure.org/mlocate/mlocate-${TERMUX_PKG_VERSION}.tar.xz TERMUX_PKG_SRCURL=https://releases.pagure.org/mlocate/mlocate-${TERMUX_PKG_VERSION}.tar.xz
TERMUX_PKG_SHA256=3063df79fe198fb9618e180c54baf3105b33d88fe602ff2d8570aaf944f1263e TERMUX_PKG_SHA256=3063df79fe198fb9618e180c54baf3105b33d88fe602ff2d8570aaf944f1263e
@ -18,6 +18,9 @@ termux_step_pre_configure() {
termux_step_create_debscripts() { termux_step_create_debscripts() {
echo "#!$TERMUX_PREFIX/bin/sh" > postinst echo "#!$TERMUX_PREFIX/bin/sh" > postinst
echo "mkdir -p $TERMUX_PREFIX/var/mlocate/" >> postinst echo "mkdir -p $TERMUX_PREFIX/var/mlocate/" >> postinst
echo "if [ ! -e $TERMUX_PREFIX/var/mlocate/mlocate.db ]; then" >> postinst
echo " echo Remember to run \\\`updatedb\\'." >> postinst
echo "fi" >> postinst
echo "exit 0" >> postinst echo "exit 0" >> postinst
chmod 0755 postinst chmod 0755 postinst
} }