inotify-tools: initial import form Till Biedermann's repository

This commit is contained in:
Thomas Penteker 2011-08-19 11:05:12 +02:00
parent cf5b53e5a6
commit 6ceee528d9
3 changed files with 39 additions and 0 deletions

20
inotify-tools/.footprint Normal file
View File

@ -0,0 +1,20 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/bin/
-rwxr-xr-x root/root usr/bin/inotifywait
-rwxr-xr-x root/root usr/bin/inotifywatch
drwxr-xr-x root/root usr/include/
drwxr-xr-x root/root usr/include/inotifytools/
-rw-r--r-- root/root usr/include/inotifytools/inotify-nosys.h
-rw-r--r-- root/root usr/include/inotifytools/inotify.h
-rw-r--r-- root/root usr/include/inotifytools/inotifytools.h
drwxr-xr-x root/root usr/lib/
-rw-r--r-- root/root usr/lib/libinotifytools.a
-rwxr-xr-x root/root usr/lib/libinotifytools.la
lrwxrwxrwx root/root usr/lib/libinotifytools.so -> libinotifytools.so.0.4.1
lrwxrwxrwx root/root usr/lib/libinotifytools.so.0 -> libinotifytools.so.0.4.1
-rwxr-xr-x root/root usr/lib/libinotifytools.so.0.4.1
drwxr-xr-x root/root usr/share/
drwxr-xr-x root/root usr/share/man/
drwxr-xr-x root/root usr/share/man/man1/
-rw-r--r-- root/root usr/share/man/man1/inotifywait.1.gz
-rw-r--r-- root/root usr/share/man/man1/inotifywatch.1.gz

1
inotify-tools/.md5sum Normal file
View File

@ -0,0 +1 @@
b43d95a0fa8c45f8bab3aec9672cf30c inotify-tools-3.14.tar.gz

18
inotify-tools/Pkgfile Normal file
View File

@ -0,0 +1,18 @@
# 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=1
source=(http://dl.sourceforge.net/sourceforge/$name/$name-$version.tar.gz)
build() {
cd $name-$version
./configure --prefix=/usr
make
make DESTDIR=$PKG install
rm -rf $PKG/usr/share/doc
}