- #
- # Copyright (C) 2015 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:=canutils
- PKG_VERSION:=2020.02.04
- PKG_RELEASE:=1
-
- PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
- PKG_SOURCE_URL:=https://codeload.github.com/linux-can/can-utils/tar.gz/v$(PKG_VERSION)?
- PKG_HASH:=a766aad89955b9cfcca27f61ef988fa169565c3657d2789808c0f33a7afa23c8
- PKG_BUILD_DIR:=$(BUILD_DIR)/can-utils-$(PKG_VERSION)
-
- PKG_MAINTAINER:=Anton Glukhov <anton.a.glukhov@gmail.com>
- PKG_LICENSE:=GPL-2.0-or-later
-
- PKG_FIXUP:=autoreconf
- PKG_INSTALL:=1
- PKG_BUILD_PARALLEL:=1
-
- include $(INCLUDE_DIR)/package.mk
-
- define Package/canutils/Default
- SECTION:=utils
- CATEGORY:=Utilities
- URL:=https://github.com/linux-can/can-utils
- TITLE:=CAN userspace utilities and tools
- endef
-
- define Package/canutils
- $(call Package/canutils/Default)
- MENU:=1
- endef
-
- define GenPlugin
- define Package/$(addprefix canutils-,$(1))
- $(call Package/canutils/Default)
- TITLE:=Utility $(1) from the CAN utilities
- endef
-
- define Package/$(addprefix canutils-,$(1))/description
- Utility $(1) from the CAN utilities package.
- endef
- endef
-
- FILES:= \
- asc2log bcmserver canbusload can-calc-bit-timing \
- candump canfdtest cangen cangw canlogserver canplayer \
- cansend cansniffer isotpdump isotpperf isotprecv isotpsend \
- isotpserver isotpsniffer isotptun jacd jcat jspy jsr \
- log2asc log2long slcan_attach slcand slcanpty testj1939
-
-
- $(foreach a,$(FILES),$(eval $(call GenPlugin,$(a))))
-
- define PartInstall
- define Package/canutils-$(1)/install
- $(INSTALL_DIR) $$(1)/usr/bin
- $(INSTALL_BIN) \
- $(PKG_INSTALL_DIR)/usr/bin/$(1) \
- $$(1)/usr/bin/
- endef
- endef
-
- $(foreach file,$(FILES),$(eval $(call PartInstall,$(file))))
-
- $(eval $(call BuildPackage,canutils))
- $(foreach file,$(FILES),$(eval $(call BuildPackage,canutils-$(file))))
|