diff options
author | James <> | 2013-03-17 12:16:37 +0000 |
---|---|---|
committer | James <> | 2013-03-17 12:16:37 +0000 |
commit | 27b76ab0671089c47506615a796a261e993896a7 (patch) | |
tree | 61213d67e7fa87b20356b23798558e2c4212c42f /tools/dosfstools/.svn | |
download | trunk-36060-master.tar.gz trunk-36060-master.tar.bz2 trunk-36060-master.zip |
Diffstat (limited to 'tools/dosfstools/.svn')
-rw-r--r-- | tools/dosfstools/.svn/entries | 62 | ||||
-rw-r--r-- | tools/dosfstools/.svn/text-base/Makefile.svn-base | 30 |
2 files changed, 92 insertions, 0 deletions
diff --git a/tools/dosfstools/.svn/entries b/tools/dosfstools/.svn/entries new file mode 100644 index 0000000..8ad3ca9 --- /dev/null +++ b/tools/dosfstools/.svn/entries @@ -0,0 +1,62 @@ +10 + +dir +36060 +svn://svn.openwrt.org/openwrt/trunk/tools/dosfstools +svn://svn.openwrt.org/openwrt + + + +2012-08-12T12:34:30.330423Z +33140 +jow + + + + + + + + + + + + + + +3c298f89-4303-0410-b956-a3cf2f4a3e73 + +Makefile +file + + + + +2013-03-17T12:13:23.000000Z +f3cc990178c90998ce63ff6d4d39b2de +2012-08-12T12:34:30.330423Z +33140 +jow + + + + + + + + + + + + + + + + + + + + + +744 + diff --git a/tools/dosfstools/.svn/text-base/Makefile.svn-base b/tools/dosfstools/.svn/text-base/Makefile.svn-base new file mode 100644 index 0000000..c582489 --- /dev/null +++ b/tools/dosfstools/.svn/text-base/Makefile.svn-base @@ -0,0 +1,30 @@ +# +# Copyright (C) 2012 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:=3.0.7 +PKG_SOURCE:=$(PKG_NAME)_$(PKG_VERSION).orig.tar.gz +PKG_SOURCE_URL:=http://dosfstools.sourcearchive.com/downloads/3.0.7/ +PKG_MD5SUM:=5d4d97c79e8dae60bb08c2fba36c94d6 +PKG_CAT:=zcat + +include $(INCLUDE_DIR)/host-build.mk + +define Host/Compile + $(MAKE) -C $(HOST_BUILD_DIR) SHELL="$(BASH)" LDFLAGS="$(HOST_LDFLAGS) $(HOST_STATIC_LINKING)" +endef + +define Host/Install + $(INSTALL_BIN) $(HOST_BUILD_DIR)/mkdosfs $(STAGING_DIR_HOST)/bin/ +endef + +define Host/Clean + rm -f $(STAGING_DIR_HOST)/bin/mkdosfs +endef + +$(eval $(call HostBuild)) |