File: control

package info (click to toggle)
inotify-hookable 0.09-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 204 kB
  • sloc: perl: 394; makefile: 7
file content (45 lines) | stat: -rw-r--r-- 1,800 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
Source: inotify-hookable
Maintainer: Debian Perl Group <pkg-perl-maintainers@lists.alioth.debian.org>
Uploaders: Dominique Dumont <dod@debian.org>
Section: perl
Testsuite: autopkgtest-pkg-perl
Priority: optional
Build-Depends: debhelper-compat (= 13)
Build-Depends-Indep: libclass-inspector-perl <!nocheck>,
                     libdata-bitmask-perl <!nocheck>,
                     liblinux-inotify2-perl <!nocheck>,
                     liblist-moreutils-perl <!nocheck>,
                     libmoose-perl <!nocheck>,
                     libmoosex-getopt-perl <!nocheck>,
                     libmoosex-types-perl <!nocheck>,
                     libtry-tiny-perl <!nocheck>
Standards-Version: 4.5.1
Vcs-Browser: https://salsa.debian.org/perl-team/modules/packages/inotify-hookable
Vcs-Git: https://salsa.debian.org/perl-team/modules/packages/inotify-hookable.git
Homepage: https://metacpan.org/release/App-Inotify-Hookable
Rules-Requires-Root: no

Package: inotify-hookable
Architecture: all
Depends: ${misc:Depends},
         ${perl:Depends},
         libclass-inspector-perl,
         libdata-bitmask-perl,
         liblinux-inotify2-perl,
         liblist-moreutils-perl,
         libmoose-perl,
         libmoosex-getopt-perl,
         libmoosex-types-perl,
         libtry-tiny-perl
Description: blocking command-line interface to inotify
 inotify-hookable is a program that monitor files with Linux inotify. This
 program accepts options to specify the files to be monitored and the command
 to run when a file has changed (based in kernel inotify)
 .
 inotify-hookable main advantage over inotifywait are:
  - command to run after watch can be specified with an option
  - emacs and vi backup files are ignored by default
 .
 Example:
 .
  inotify-hookable -f foo.c -c 'gcc -o foo foo.c'