diff options
author | Thomas Penteker <tek@serverop.de> | 2011-08-19 11:05:12 +0200 |
---|---|---|
committer | Thomas Penteker <tek@serverop.de> | 2011-08-19 11:05:12 +0200 |
commit | 6ceee528d93ab596e560cb6a782423057bde5be7 (patch) | |
tree | 477082197d957a9aa14a38623536c3da675781ec /inotify-tools | |
parent | cf5b53e5a61d60f4345da5af574ed0ac490a73ed (diff) | |
download | contrib-6ceee528d93ab596e560cb6a782423057bde5be7.tar.gz contrib-6ceee528d93ab596e560cb6a782423057bde5be7.tar.xz |
inotify-tools: initial import form Till Biedermann's repository
Diffstat (limited to 'inotify-tools')
-rw-r--r-- | inotify-tools/.footprint | 20 | ||||
-rw-r--r-- | inotify-tools/.md5sum | 1 | ||||
-rw-r--r-- | inotify-tools/Pkgfile | 18 |
3 files changed, 39 insertions, 0 deletions
diff --git a/inotify-tools/.footprint b/inotify-tools/.footprint new file mode 100644 index 000000000..ea1c1351f --- /dev/null +++ b/inotify-tools/.footprint @@ -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 diff --git a/inotify-tools/.md5sum b/inotify-tools/.md5sum new file mode 100644 index 000000000..a3c58abf4 --- /dev/null +++ b/inotify-tools/.md5sum @@ -0,0 +1 @@ +b43d95a0fa8c45f8bab3aec9672cf30c inotify-tools-3.14.tar.gz diff --git a/inotify-tools/Pkgfile b/inotify-tools/Pkgfile new file mode 100644 index 000000000..5bf46e840 --- /dev/null +++ b/inotify-tools/Pkgfile @@ -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 +} |