# SHORT DESC: Filesystems in User Space Tools
# LONG DESC: Filesystem in Userspace allows you to implement a fully functional filesystem in a userspace program. FUSE was originally developed to support AVFS but it has since became a separate project. Now quite a few other projects are using it. Implementing a filesystem is simple, a hello world filesystem is less than a 100 lines long.
# IGNORE: slackware-12.2
# IGNORE: slamd64-12.2
# IGNORE: slackware-13.0
# IGNORE: slackware-13.1
# IGNORE: slackware-13.2
# IGNORE: slackware-14.0
# IGNORE: slackware64-13.0
# IGNORE: slackware64-13.1
# IGNORE: slackware64-13.2
# IGNORE: slackware64-14.0
./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var --disable-kernel-module --libdir="$libdir" && \
make && \
${installmonitor} make install || exit 1
|