termux-packages/packages/inotify-tools/build.sh
Fredrik Fornwall 7f5bdead21 Rebuild all packages with control.tar.gz
Bump the version of all old packages that contained a control.tar.gz
file - as of now only control.tar.xz is used. See #1398.
2017-09-15 00:38:35 +02:00

22 lines
658 B
Bash

TERMUX_PKG_HOMEPAGE=https://github.com/rvoicilas/inotify-tools/wiki
TERMUX_PKG_DESCRIPTION="Programs providing a simple interface to inotify"
TERMUX_PKG_VERSION=3.14
TERMUX_PKG_REVISION=1
TERMUX_PKG_SRCURL=https://github.com/downloads/rvoicilas/inotify-tools/inotify-tools-${TERMUX_PKG_VERSION}.tar.gz
TERMUX_PKG_SHA256=222bcca8893d7bf8a1ce207fb39ceead5233b5015623d099392e95197676c92f
TERMUX_PKG_BUILD_IN_SRC=yes
termux_step_pre_configure() {
LDFLAGS+=" -llog"
}
termux_step_make () {
continue
}
termux_step_make_install () {
# the command-line tools needs the libinotifytools installed before building
make -C libinotifytools install
make install
}