summaryrefslogtreecommitdiffstats
path: root/tools/xxd/Makefile
diff options
context:
space:
mode:
authorPetr Štetiar <ynezz@true.cz>2022-08-30 08:41:07 +0200
committerPetr Štetiar <ynezz@true.cz>2022-09-06 08:04:53 +0200
commit88c9056a70901577489ecdc7a25207a9b7576d6e (patch)
tree3bc5d305383b3299336b3680ab79d629cbd9b652 /tools/xxd/Makefile
parenteae2fb8027cb892e42181e471ba344aa5d26bf7e (diff)
downloadopenwrt-88c9056a70901577489ecdc7a25207a9b7576d6e.tar.gz
openwrt-88c9056a70901577489ecdc7a25207a9b7576d6e.tar.bz2
openwrt-88c9056a70901577489ecdc7a25207a9b7576d6e.zip
tools: remove xxd package
It shouldn't be needed anymore as we've now `scripts/xxdi.pl`, which should be self contained and fully compatible `xxd -i` replacement. Fixes: #10555 Signed-off-by: Petr Štetiar <ynezz@true.cz>
Diffstat (limited to 'tools/xxd/Makefile')
-rw-r--r--tools/xxd/Makefile19
1 files changed, 0 insertions, 19 deletions
diff --git a/tools/xxd/Makefile b/tools/xxd/Makefile
deleted file mode 100644
index c3cc6863cc..0000000000
--- a/tools/xxd/Makefile
+++ /dev/null
@@ -1,19 +0,0 @@
-# SPDX-License-Identifier: GPL-2.0-or-later
-
-include $(TOPDIR)/rules.mk
-
-PKG_NAME:=xxd
-PKG_VERSION:=1.10
-PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
-PKG_SOURCE_URL:=http://grail.cba.csuohio.edu/~somos/
-PKG_HASH:=9bf05c19b9084973e3cc877696a7f9881a5c87fa5a9fa438d9962519726559f9
-PKG_CPE_ID:=cpe:/a:vim:vim
-
-include $(INCLUDE_DIR)/host-build.mk
-
-define Host/Install
- $(INSTALL_DIR) $(STAGING_DIR_HOST)/bin
- $(INSTALL_BIN) $(HOST_BUILD_DIR)/xxd $(STAGING_DIR_HOST)/bin/
-endef
-
-$(eval $(call HostBuild))