mirror of
https://github.com/openwrt/packages.git
synced 2025-02-07 03:29:52 +00:00
Both mirrors provided in the Makefile only serve gzipped tarballs. Fixes: dcd7fcfa5b4e ("dosfstools: update to v4.0") Signed-off-by: Stijn Tintel <stijn@linux-ipv6.be>
53 lines
1.5 KiB
Makefile
53 lines
1.5 KiB
Makefile
#
|
|
# Copyright (C) 2006-2016 OpenWrt.org
|
|
#
|
|
# 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:=4.2
|
|
PKG_RELEASE:=4
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
|
PKG_SOURCE_URL:=https://github.com/dosfstools/dosfstools/releases/download/v$(PKG_VERSION)/ \
|
|
http://fossies.org/linux/misc
|
|
PKG_HASH:=64926eebf90092dca21b14259a5301b7b98e7b1943e8a201c7d726084809b527
|
|
|
|
PKG_MAINTAINER:=Álvaro Fernández Rojas <noltari@gmail.com>
|
|
PKG_LICENSE:=GPL-3.0-or-later
|
|
PKG_LICENSE_FILES:=COPYING
|
|
PKG_CPE_ID:=cpe:/a:dosfstools_project:dosfstools
|
|
|
|
PKG_INSTALL:=1
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
include $(INCLUDE_DIR)/nls.mk
|
|
|
|
CONFIGURE_ARGS += \
|
|
--without-udev
|
|
|
|
define Package/dosfstools
|
|
SECTION:=utils
|
|
CATEGORY:=Utilities
|
|
SUBMENU:=Filesystem
|
|
DEPENDS:=$(ICONV_DEPENDS)
|
|
TITLE:=Utilities for making and checking MS-DOS FAT filesystems
|
|
URL:=https://github.com/dosfstools
|
|
endef
|
|
|
|
define Package/dosfstools/description
|
|
The dosfstools package includes the mkfs.fat and fsck.fat utilities, which respectively make and check MS-DOS FAT filesystems.
|
|
endef
|
|
|
|
define Package/dosfstools/install
|
|
$(INSTALL_DIR) $(1)/usr/sbin
|
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/fatlabel $(1)/usr/sbin/
|
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/fsck.fat $(1)/usr/sbin/
|
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/mkfs.fat $(1)/usr/sbin/
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,dosfstools))
|