Update sysutils/filelight to version 20.04.0
[dports.git] / sysutils / p5-Fuse / pkg-descr
1 This lets you implement filesystems in perl, through the FUSE
2 (Filesystem in USErspace) kernel/lib interface.
3
4 FUSE expects you to implement callbacks for the various functions.
5
6 In the following definitions, "errno" can be 0 (for a success),
7 -EINVAL, -ENOENT, -EONFIRE, any integer less than 1 really.
8
9 You can import standard error constants by saying something like "use
10 POSIX qw(EDOTDOT ENOANO);".
11
12 Every constant you need (file types, open() flags, error values, etc)
13 can be imported either from POSIX or from Fcntl, often both. See their
14 respective documentations, for more information.
15
16 WWW: https://metacpan.org/release/Fuse