postgresql: Update from 9.6.2 to 9.6.3
[termux-packages] / packages / inotify-tools / build.sh
1 TERMUX_PKG_HOMEPAGE=https://github.com/rvoicilas/inotify-tools/wiki
2 TERMUX_PKG_DESCRIPTION="Programs providing a simple interface to inotify"
3 TERMUX_PKG_VERSION=3.14
4 TERMUX_PKG_SRCURL=https://github.com/downloads/rvoicilas/inotify-tools/inotify-tools-${TERMUX_PKG_VERSION}.tar.gz
5 TERMUX_PKG_SHA256=222bcca8893d7bf8a1ce207fb39ceead5233b5015623d099392e95197676c92f
6 TERMUX_PKG_BUILD_IN_SRC=yes
7
8 termux_step_pre_configure() {
9 LDFLAGS+=" -llog"
10 }
11
12 termux_step_make () {
13 continue
14 }
15
16 termux_step_make_install () {
17 # the command-line tools needs the libinotifytools installed before building
18 make -C libinotifytools install
19 make install
20 }