Blame view

buildroot/buildroot-2016.08.1/package/dosfstools/dosfstools.mk 1.52 KB
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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
  ################################################################################
  #
  # dosfstools
  #
  ################################################################################
  
  DOSFSTOOLS_VERSION = 4.0
  DOSFSTOOLS_SOURCE = dosfstools-$(DOSFSTOOLS_VERSION).tar.xz
  DOSFSTOOLS_SITE = https://github.com/dosfstools/dosfstools/releases/download/v$(DOSFSTOOLS_VERSION)
  DOSFSTOOLS_LICENSE = GPLv3+
  DOSFSTOOLS_LICENSE_FILES = COPYING
  DOSFSTOOLS_CONF_OPTS = --enable-compat-symlinks --exec-prefix=/
  HOST_DOSFSTOOLS_CONF_OPTS = --enable-compat-symlinks
  
  ifeq ($(BR2_PACKAGE_HAS_UDEV),y)
  DOSFSTOOLS_CONF_OPTS += --with-udev
  DOSFSTOOLS_DEPENDENCIES += udev
  else
  DOSFSTOOLS_CONF_OPTS += --without-udev
  endif
  
  ifneq ($(BR2_ENABLE_LOCALE),y)
  DOSFSTOOLS_CONF_OPTS += LIBS="-liconv"
  DOSFSTOOLS_DEPENDENCIES += libiconv
  endif
  
  ifeq ($(BR2_PACKAGE_DOSFSTOOLS_FATLABEL),)
  define DOSFSTOOLS_REMOVE_FATLABEL
  	rm -f $(addprefix $(TARGET_DIR)/sbin/,dosfslabel fatlabel)
  endef
  DOSFSTOOLS_POST_INSTALL_TARGET_HOOKS += DOSFSTOOLS_REMOVE_FATLABEL
  endif
  
  ifeq ($(BR2_PACKAGE_DOSFSTOOLS_FSCK_FAT),)
  define DOSFSTOOLS_REMOVE_FSCK_FAT
  	rm -f $(addprefix $(TARGET_DIR)/sbin/,fsck.fat dosfsck fsck.msdos fsck.vfat)
  endef
  DOSFSTOOLS_POST_INSTALL_TARGET_HOOKS += DOSFSTOOLS_REMOVE_FSCK_FAT
  endif
  
  ifeq ($(BR2_PACKAGE_DOSFSTOOLS_MKFS_FAT),)
  define DOSFSTOOLS_REMOVE_MKFS_FAT
  	rm -f $(addprefix $(TARGET_DIR)/sbin/,mkfs.fat mkdosfs mkfs.msdos mkfs.vfat)
  endef
  DOSFSTOOLS_POST_INSTALL_TARGET_HOOKS += DOSFSTOOLS_REMOVE_MKFS_FAT
  endif
  
  $(eval $(autotools-package))
  $(eval $(host-autotools-package))