19 lines
489 B
Plaintext
19 lines
489 B
Plaintext
# Description: inotify-tools is a C library and a set of command-line programs for Linux providing a simple interface to inotify
|
|
# URL: https://github.com/inotify-tools/inotify-tools
|
|
# Maintainer: Tim Biermann, tbier at posteo dot de
|
|
|
|
name=inotify-tools
|
|
version=3.22.6.0
|
|
release=1
|
|
source=(https://github.com/inotify-tools/inotify-tools/archive/$version/$name-$version.tar.gz)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
|
|
./autogen.sh
|
|
./configure --prefix=/usr
|
|
|
|
make
|
|
make DESTDIR=$PKG install
|
|
}
|