contrib/inotify-tools/Pkgfile

19 lines
489 B
Plaintext
Raw Normal View History

# Description: inotify-tools is a C library and a set of command-line programs for Linux providing a simple interface to inotify
2021-02-01 11:55:03 +01:00
# URL: https://github.com/inotify-tools/inotify-tools
# Maintainer: Tim Biermann, tbier at posteo dot de
name=inotify-tools
2022-06-08 16:49:00 +02:00
version=3.22.6.0
2019-04-10 01:17:16 +02:00
release=1
2021-02-01 11:55:03 +01:00
source=(https://github.com/inotify-tools/inotify-tools/archive/$version/$name-$version.tar.gz)
build() {
2021-02-01 11:55:03 +01:00
cd $name-$version
2019-04-10 01:17:16 +02:00
2021-02-01 11:55:03 +01:00
./autogen.sh
./configure --prefix=/usr
2019-04-10 01:17:16 +02:00
2021-02-01 11:55:03 +01:00
make
make DESTDIR=$PKG install
}