# SHORT DESC: Ext2 Filesystem Image Generator
# LONG DESC: Genext2fs generates an ext2 filesystem as a normal (i.e. non-root) user. It doesn't require you to mount the image file to copy files on it. It doesn't even require you to be the superuser to make device nodes or set group/user ids.
./configure --prefix=/usr --libdir="${libdir}" --sysconfdir=/etc --localstatedir=/var || exit 1
grep -v 'SCANF_CAN_MALLOC' config.h > config.h.new
mv config.h.new config.h
make && \
make install || exit 1
|