Blame view

buildroot/buildroot-2016.08.1/package/libfuse/libfuse.mk 790 Bytes
6b13f685e   김민수   BSP 최초 추가
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
  ################################################################################
  #
  # libfuse
  #
  ################################################################################
  
  LIBFUSE_VERSION = 2.9.7
  LIBFUSE_SOURCE = fuse-$(LIBFUSE_VERSION).tar.gz
  LIBFUSE_SITE = https://github.com/libfuse/libfuse/releases/download/fuse-$(LIBFUSE_VERSION)
  LIBFUSE_LICENSE = GPLv2, LGPLv2.1
  LIBFUSE_LICENSE_FILES = COPYING COPYING.LIB
  LIBFUSE_INSTALL_STAGING = YES
  LIBFUSE_DEPENDENCIES = $(if $(BR2_PACKAGE_LIBICONV),libiconv)
  LIBFUSE_CONF_OPTS = \
  	--disable-example \
  	--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
  
  $(eval $(autotools-package))