X-Git-Url: https://git.distorted.org.uk/~mdw/termux-packages/blobdiff_plain/6ee3449e0c47b9bc2b1d88820fd1b7341eb35a51..a4d329949e110400080f7f9def71302452017578:/packages/command-not-found/build.sh diff --git a/packages/command-not-found/build.sh b/packages/command-not-found/build.sh index 7c870148..09d47fa9 100644 --- a/packages/command-not-found/build.sh +++ b/packages/command-not-found/build.sh @@ -1,15 +1,10 @@ TERMUX_PKG_HOMEPAGE=http://termux.com -TERMUX_PKG_DESCRIPTION="List of commands available for installation" -TERMUX_PKG_VERSION=0.2 +TERMUX_PKG_DESCRIPTION="Suggest installation of packages in interactive shell sessions" +TERMUX_PKG_VERSION=0.8 termux_step_make_install () { - TERMUX_SHARE_DIR=$TERMUX_PREFIX/share/termux - mkdir -p $TERMUX_SHARE_DIR - cp $TERMUX_PKG_BUILDER_DIR/commands.txt $TERMUX_SHARE_DIR/commands.txt - TERMUX_LIBEXEC_DIR=$TERMUX_PREFIX/libexec/termux mkdir -p $TERMUX_LIBEXEC_DIR - $CC $CFLAGS $LDFLAGS -std=c11 $TERMUX_PKG_BUILDER_DIR/command-not-found.c \ - -DTERMUX_COMMANDS_LISTING=$TERMUX_PREFIX/share/termux/commands.txt \ + $CC -Wall -Wextra -Werror -pedantic $CFLAGS $LDFLAGS -std=c11 $TERMUX_PKG_BUILDER_DIR/command-not-found.c \ -o $TERMUX_LIBEXEC_DIR/command-not-found }