1
0
mirror of https://github.com/termux/termux-packages synced 2024-06-22 09:27:05 +00:00
termux-packages/packages/inotify-tools/build.sh
Termux Github Actions 05bc5aeba9 inotify-tools: update to 3.22.6.0
This commit has been automatically submitted by Github Actions.
2022-06-07 12:12:10 +00:00

26 lines
780 B
Bash

TERMUX_PKG_HOMEPAGE=https://github.com/rvoicilas/inotify-tools/wiki
TERMUX_PKG_DESCRIPTION="Programs providing a simple interface to inotify"
TERMUX_PKG_LICENSE="GPL-2.0"
TERMUX_PKG_MAINTAINER="@termux"
TERMUX_PKG_VERSION="3.22.6.0"
TERMUX_PKG_SRCURL=https://github.com/rvoicilas/inotify-tools/archive/${TERMUX_PKG_VERSION}.tar.gz
TERMUX_PKG_SHA256=c6b7e70f1df09e386217102a1fe041cfc15fa4f3d683d2970140b6814cf2ed12
TERMUX_PKG_AUTO_UPDATE=true
TERMUX_PKG_BREAKS="inotify-tools-dev"
TERMUX_PKG_REPLACES="inotify-tools-dev"
TERMUX_PKG_BUILD_IN_SRC=true
termux_step_pre_configure() {
./autogen.sh
}
termux_step_make() {
:
}
termux_step_make_install() {
# the command-line tools needs the libinotifytools installed before building
make -C libinotifytools install
make install
}