20 lines
672 B
Plaintext
20 lines
672 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: http://inotify-tools.sourceforge.net/
|
|
# Maintainer: Thomas Penteker, tek at serverop dot de
|
|
# Packager: Till Biedermann, tillbiedermann at yahoo dot de
|
|
# Depends on:
|
|
|
|
name=inotify-tools
|
|
version=3.14
|
|
release=2
|
|
source=(http://dl.sourceforge.net/sourceforge/$name/$name-$version.tar.gz)
|
|
source=(http://github.com/downloads/rvoicilas/inotify-tools/inotify-tools-$version.tar.gz)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
./configure --prefix=/usr --mandir=/usr/man
|
|
make
|
|
make DESTDIR=$PKG install
|
|
rm -rf $PKG/usr/share
|
|
}
|