c8db7b9634
git-svn-id: svn://svn.openwrt.org/openwrt/packages@12173 3c298f89-4303-0410-b956-a3cf2f4a3e73
60 lines
1.5 KiB
Makefile
60 lines
1.5 KiB
Makefile
#
|
|
# Copyright (C) 2006 OpenWrt.org
|
|
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
#
|
|
# $Id$
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=dosfstools
|
|
PKG_VERSION:=2.11
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).src.tar.gz
|
|
PKG_SOURCE_URL:=ftp://ftp.uni-erlangen.de/pub/Linux/LOCAL/dosfstools/
|
|
PKG_MD5SUM:=407d405ade410f7597d364ab5dc8c9f6
|
|
|
|
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/
|
|
SUBMENU:=filesystem
|
|
endef
|
|
|
|
define Package/dosfstools/description
|
|
Utilities to create and check MS-DOS FAT filesystems.
|
|
endef
|
|
|
|
define Build/Configure
|
|
endef
|
|
|
|
define Build/Compile
|
|
$(MAKE) -C $(PKG_BUILD_DIR) \
|
|
$(TARGET_CONFIGURE_OPTS) \
|
|
OPTFLAGS="$(TARGET_CFLAGS) -D_FILE_OFFSET_BITS=64" \
|
|
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
|
|
endef
|
|
|
|
define Package/dosfstools/install
|
|
$(INSTALL_DIR) $(1)/usr/sbin
|
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/dosfsck $(1)/usr/sbin/
|
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/fsck.{msdos,vfat} $(1)/usr/sbin/
|
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/mkdosfs $(1)/usr/sbin/
|
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/mkfs.{msdos,vfat} $(1)/usr/sbin/
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,dosfstools))
|