diff options
author | Felix Fietkau <nbd@openwrt.org> | 2015-03-15 05:18:40 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2015-03-15 05:18:40 +0000 |
commit | 7b24d9404e6e0889748a70c83a6c3ab9b364fe15 (patch) | |
tree | e3a19d557d67958b41d278e403cd4ae98007577f /tools | |
parent | bef082588530d1b0c1a6e77bc3039812c1b694e5 (diff) | |
download | upstream-7b24d9404e6e0889748a70c83a6c3ab9b364fe15.tar.gz upstream-7b24d9404e6e0889748a70c83a6c3ab9b364fe15.tar.bz2 upstream-7b24d9404e6e0889748a70c83a6c3ab9b364fe15.zip |
dosfstools: update to v3.0.27
Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@44762 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'tools')
-rw-r--r-- | tools/dosfstools/Makefile | 22 |
1 files changed, 15 insertions, 7 deletions
diff --git a/tools/dosfstools/Makefile b/tools/dosfstools/Makefile index ca4f284aa6..5a5bd1d4b9 100644 --- a/tools/dosfstools/Makefile +++ b/tools/dosfstools/Makefile @@ -1,5 +1,5 @@ -# -# Copyright (C) 2012-2014 OpenWrt.org +# +# Copyright (C) 2012-2015 OpenWrt.org # # This is free software, licensed under the GNU General Public License v2. # See /LICENSE for more information. @@ -7,16 +7,24 @@ include $(TOPDIR)/rules.mk PKG_NAME:=dosfstools -PKG_VERSION:=3.0.26 +PKG_VERSION:=3.0.27 + +PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz +PKG_SOURCE_URL:=git://github.com/dosfstools/dosfstools.git +PKG_SOURCE_PROTO:=git +PKG_SOURCE_VERSION:=266a5fc635135a9ffaa8683da1ec03aae1553b7b +PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION) -PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz -PKG_SOURCE_URL:=http://daniel-baumann.ch/files/software/dosfstools/ -PKG_MD5SUM:=45012f5f56f2aae3afcd62120b9e5a08 +HOST_BUILD_DIR:=$(BUILD_DIR_HOST)/$(PKG_NAME)-$(PKG_VERSION) include $(INCLUDE_DIR)/host-build.mk +ifeq ($(HOST_OS),Darwin) +LDLIBS += -liconv +endif + define Host/Compile - $(MAKE) -C $(HOST_BUILD_DIR) SHELL="$(BASH)" LDFLAGS="$(HOST_LDFLAGS)" + $(MAKE) -C $(HOST_BUILD_DIR) SHELL="$(BASH)" LDFLAGS="$(HOST_LDFLAGS)" LDLIBS="$(LDLIBS)" endef define Host/Install |