chiark / gitweb /
4facef11dd342c710bd12ebd15336f530f60f8c9
[termux-packages] / packages / command-not-found / build.sh
1 TERMUX_PKG_HOMEPAGE=http://termux.com
2 TERMUX_PKG_DESCRIPTION="Suggest installation of packages in interactive shell sessions"
3 TERMUX_PKG_VERSION=1.5
4
5 termux_step_make_install () {
6         TERMUX_LIBEXEC_DIR=$TERMUX_PREFIX/libexec/termux
7         mkdir -p $TERMUX_LIBEXEC_DIR
8         $CC -Wall -Wextra -Werror -pedantic $CFLAGS $LDFLAGS -std=c11 $TERMUX_PKG_BUILDER_DIR/command-not-found.c \
9                 -o $TERMUX_LIBEXEC_DIR/command-not-found
10 }