2009-01-04 00:06:33 +00:00
|
|
|
#
|
2009-03-29 20:31:36 +00:00
|
|
|
# Copyright (C) 2006-2009 OpenWrt.org
|
2006-07-24 13:01:16 +00:00
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
|
|
|
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
|
|
|
PKG_NAME:=dosfstools
|
|
|
|
PKG_VERSION:=2.11
|
2009-03-29 20:31:36 +00:00
|
|
|
PKG_RELEASE:=4
|
2006-07-24 13:01:16 +00:00
|
|
|
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).src.tar.gz
|
|
|
|
PKG_SOURCE_URL:=ftp://ftp.uni-erlangen.de/pub/Linux/LOCAL/dosfstools/
|
2006-10-30 13:51:50 +00:00
|
|
|
PKG_MD5SUM:=407d405ade410f7597d364ab5dc8c9f6
|
2006-07-24 13:01:16 +00:00
|
|
|
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
|
|
|
|
define Package/dosfstools
|
|
|
|
SECTION:=utils
|
|
|
|
CATEGORY:=Utilities
|
|
|
|
TITLE:=MS-DOS FAT filesystems utilities
|
|
|
|
URL:=ftp://ftp.uni-erlangen.de:/pub/Linux/LOCAL/dosfstools/
|
2009-07-05 13:57:59 +00:00
|
|
|
SUBMENU:=Filesystem
|
2006-07-24 13:01:16 +00:00
|
|
|
endef
|
|
|
|
|
2007-10-14 04:32:56 +00:00
|
|
|
define Package/dosfstools/description
|
|
|
|
Utilities to create and check MS-DOS FAT filesystems.
|
|
|
|
endef
|
|
|
|
|
2006-07-24 13:01:16 +00:00
|
|
|
define Build/Configure
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Build/Compile
|
|
|
|
$(MAKE) -C $(PKG_BUILD_DIR) \
|
|
|
|
$(TARGET_CONFIGURE_OPTS) \
|
|
|
|
OPTFLAGS="$(TARGET_CFLAGS) -D_FILE_OFFSET_BITS=64" \
|
2006-10-30 13:51:50 +00:00
|
|
|
PREFIX="/usr" \
|
|
|
|
SBINDIR="/usr/sbin" \
|
|
|
|
all
|
|
|
|
$(MAKE) -C $(PKG_BUILD_DIR) \
|
|
|
|
$(TARGET_CONFIGURE_OPTS) \
|
|
|
|
OPTFLAGS="$(TARGET_CFLAGS) -D_FILE_OFFSET_BITS=64" \
|
|
|
|
PREFIX="$(PKG_INSTALL_DIR)/usr" \
|
|
|
|
SBINDIR="$(PKG_INSTALL_DIR)/usr/sbin" \
|
|
|
|
install
|
2006-07-24 13:01:16 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/dosfstools/install
|
2006-11-23 00:29:07 +00:00
|
|
|
$(INSTALL_DIR) $(1)/usr/sbin
|
2007-12-09 18:59:01 +00:00
|
|
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/dosfsck $(1)/usr/sbin/
|
2009-01-07 18:29:05 +00:00
|
|
|
(cd $(1)/usr/sbin; ln -sf dosfsck fsck.msdos; ln -sf dosfsck fsck.vfat)
|
2007-12-09 18:59:01 +00:00
|
|
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/mkdosfs $(1)/usr/sbin/
|
2009-03-29 20:31:36 +00:00
|
|
|
(cd $(1)/usr/sbin; ln -sf mkdosfs mkfs.msdos; ln -sf mkdosfs mkfs.vfat)
|
2006-07-24 13:01:16 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call BuildPackage,dosfstools))
|