exfat-utils: new package
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
This commit is contained in:
parent
3f73abd78b
commit
fe1504bb62
@ -190,6 +190,7 @@ source "package/curlftpfs/Config.in"
|
||||
source "package/dosfstools/Config.in"
|
||||
source "package/e2fsprogs/Config.in"
|
||||
source "package/exfat/Config.in"
|
||||
source "package/exfat-utils/Config.in"
|
||||
source "package/flashbench/Config.in"
|
||||
source "package/genext2fs/Config.in"
|
||||
source "package/genromfs/Config.in"
|
||||
|
11
package/exfat-utils/Config.in
Normal file
11
package/exfat-utils/Config.in
Normal file
@ -0,0 +1,11 @@
|
||||
config BR2_PACKAGE_EXFAT_UTILS
|
||||
bool "exfat-utils"
|
||||
depends on BR2_LARGEFILE
|
||||
depends on BR2_USE_WCHAR
|
||||
help
|
||||
exFAT filesystem utilities.
|
||||
|
||||
http://code.google.com/p/exfat/
|
||||
|
||||
comment "exfat-utils requires a toolchain with LARGEFILE and WCHAR support"
|
||||
depends on !BR2_LARGEFILE || !BR2_USE_WCHAR
|
24
package/exfat-utils/exfat-utils.mk
Normal file
24
package/exfat-utils/exfat-utils.mk
Normal file
@ -0,0 +1,24 @@
|
||||
#############################################################
|
||||
#
|
||||
# exfat-utils
|
||||
#
|
||||
#############################################################
|
||||
|
||||
EXFAT_UTILS_VERSION = 1.0.1
|
||||
EXFAT_UTILS_SITE = http://exfat.googlecode.com/files
|
||||
EXFAT_UTILS_DEPENDENCIES = host-scons
|
||||
EXFAT_UTILS_LICENSE = GPLv3
|
||||
EXFAT_UTILS_LICENSE_FILES = COPYING
|
||||
|
||||
define EXFAT_UTILS_BUILD_CMDS
|
||||
(cd $(@D); \
|
||||
$(TARGET_CONFIGURE_OPTS) $(SCONS))
|
||||
endef
|
||||
|
||||
define EXFAT_UTILS_INSTALL_TARGET_CMDS
|
||||
(cd $(@D); \
|
||||
$(TARGET_CONFIGURE_OPTS) $(SCONS) \
|
||||
DESTDIR=$(TARGET_DIR)/usr/bin install)
|
||||
endef
|
||||
|
||||
$(eval $(generic-package))
|
Loading…
Reference in New Issue
Block a user