From 4e554f04953e88ec03f645001c5153461d760bc0 Mon Sep 17 00:00:00 2001 From: Michael Forney Date: Mon, 18 Mar 2019 13:41:47 -0700 Subject: Rename libfuse to fuse Although the upstream repository is called libfuse, the distributed source archives are called fuse, and this is how most other distributions name the package. --- pkg/fuse/gen.lua | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 pkg/fuse/gen.lua (limited to 'pkg/fuse/gen.lua') diff --git a/pkg/fuse/gen.lua b/pkg/fuse/gen.lua new file mode 100644 index 00000000..8554009a --- /dev/null +++ b/pkg/fuse/gen.lua @@ -0,0 +1,22 @@ +cflags{ + '-D FUSE_USE_VERSION=33', + '-I $dir', + '-I $srcdir/include', + '-I $srcdir/lib', +} + +cc('lib/mount_util.c') + +exe('fusermount3', {'util/fusermount.c', 'lib/mount_util.c.o'}) +file('bin/fusermount3', '4755', '$outdir/fusermount3') +man{'doc/fusermount3.1'} + +lib('libfuse.a', [[lib/( + fuse.c fuse_loop.c fuse_loop_mt.c + fuse_lowlevel.c fuse_opt.c + fuse_signals.c buffer.c cuse_lowlevel.c + helper.c modules/subdir.c + mount.c mount_util.c.o +)]]) + +fetch 'git' -- cgit v1.2.3