blob: c5192912c387526f46c7fb79b6dbe0cd08abb2dd (
plain)
1 # Description: inotify-tools is a C library and a set of command-line programs for Linux providing a simple interface to inotify
2 # URL: http://inotify-tools.sourceforge.net/
3 # Maintainer: Thomas Penteker, tek at serverop dot de
4 # Packager: Till Biedermann, tillbiedermann at yahoo dot de
5 # Depends on:
6
7 name=inotify-tools
8 version=3.14
9 release=2
10 source=(http://dl.sourceforge.net/sourceforge/$name/$name-$version.tar.gz)
11 source=(http://github.com/downloads/rvoicilas/inotify-tools/inotify-tools-$version.tar.gz)
12
13 build() {
14 cd $name-$version
15 ./configure --prefix=/usr --mandir=/usr/man
16 make
17 make DESTDIR=$PKG install
18 rm -rf $PKG/usr/share
19 }
|