From 29a2f3d21be89ddbdffb53cfb20a504d44a09c27 Mon Sep 17 00:00:00 2001 From: Thomas Petazzoni Date: Mon, 19 Sep 2011 22:53:04 +0200 Subject: libfuse: rename fuse to libfuse We rename the package/fuse directory to package/libfuse to be consistent with the package name. This is needed for a future commit that will simplify the AUTOTARGETS macro by making assumptions on the directory name. Signed-off-by: Thomas Petazzoni Signed-off-by: Peter Korsgaard --- package/libfuse/Config.in | 10 ++++++++++ package/libfuse/libfuse.mk | 29 +++++++++++++++++++++++++++++ 2 files changed, 39 insertions(+) create mode 100644 package/libfuse/Config.in create mode 100644 package/libfuse/libfuse.mk (limited to 'package/libfuse') diff --git a/package/libfuse/Config.in b/package/libfuse/Config.in new file mode 100644 index 000000000..dffadf8a1 --- /dev/null +++ b/package/libfuse/Config.in @@ -0,0 +1,10 @@ +config BR2_PACKAGE_LIBFUSE + bool "libfuse" + depends on BR2_LARGEFILE + help + FUSE (Filesystem in UserSpacE) + + http://fuse.sourceforge.net/ + +comment "libfuse requires a toolchain with LARGEFILE support" + depends on !BR2_LARGEFILE diff --git a/package/libfuse/libfuse.mk b/package/libfuse/libfuse.mk new file mode 100644 index 000000000..86e57ff9a --- /dev/null +++ b/package/libfuse/libfuse.mk @@ -0,0 +1,29 @@ +############################################################# +# +# libfuse +# +############################################################# + +LIBFUSE_VERSION = 2.8.6 +LIBFUSE_SOURCE = fuse-$(LIBFUSE_VERSION).tar.gz +LIBFUSE_SITE = http://$(BR2_SOURCEFORGE_MIRROR).dl.sourceforge.net/sourceforge/fuse/ + +LIBFUSE_INSTALL_STAGING = YES +LIBFUSE_CONF_OPT= --disable-nls \ + --disable-example \ + --disable-kernel-module \ + --enable-lib \ + --enable-util + +define LIBFUSE_INSTALL_TARGET_CMDS + cp -dpf $(STAGING_DIR)/usr/bin/fusermount $(TARGET_DIR)/usr/bin/ + cp -dpf $(STAGING_DIR)/usr/lib/libfuse.so* $(TARGET_DIR)/usr/lib/ +endef + +define LIBFUSE_CLEAN_CMDS + -$(MAKE) -C $(@D) DESTDIR=$(STAGING_DIR) uninstall + -$(MAKE) -C $(@D) clean + rm -f $(TARGET_DIR)/usr/bin/fusermount $(TARGET_DIR)/usr/lib/libfuse.so* +endef + +$(eval $(call AUTOTARGETS,package,libfuse)) -- cgit v1.2.3