You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

74 lines
1.9 KiB

  1. #
  2. # Copyright (C) 2015 OpenWrt.org
  3. #
  4. # This is free software, licensed under the GNU General Public License v2.
  5. # See /LICENSE for more information.
  6. #
  7. include $(TOPDIR)/rules.mk
  8. PKG_NAME:=canutils
  9. PKG_VERSION:=2018.02.0
  10. PKG_RELEASE:=3
  11. PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
  12. PKG_SOURCE_URL:=https://codeload.github.com/linux-can/can-utils/tar.gz/v$(PKG_VERSION)?
  13. PKG_HASH:=370ad4b19447c29099f7300548f1a3362d6e123c4a6a827dbbd3110bc2c26839
  14. PKG_BUILD_DIR:=$(BUILD_DIR)/can-utils-$(PKG_VERSION)
  15. PKG_MAINTAINER:=Anton Glukhov <anton.a.glukhov@gmail.com>
  16. PKG_LICENSE:=GPL-2.0-or-later
  17. PKG_FIXUP:=autoreconf
  18. PKG_INSTALL:=1
  19. PKG_BUILD_PARALLEL:=1
  20. include $(INCLUDE_DIR)/package.mk
  21. define Package/canutils/Default
  22. SECTION:=utils
  23. CATEGORY:=Utilities
  24. URL:=https://github.com/linux-can/can-utils
  25. TITLE:=CAN userspace utilities and tools
  26. endef
  27. define Package/canutils
  28. $(call Package/canutils/Default)
  29. MENU:=1
  30. endef
  31. define GenPlugin
  32. define Package/$(addprefix canutils-,$(1))
  33. $(call Package/canutils/Default)
  34. TITLE:=Utility $(1) from the CAN utilities
  35. endef
  36. define Package/$(addprefix canutils-,$(1))/description
  37. Utility $(1) from the CAN utilities package.
  38. endef
  39. endef
  40. FILES:=canbusload can-calc-bit-timing candump \
  41. cangen cangw canplayer cansniffer cansend \
  42. canfdtest asc2log log2asc log2long bcmserver \
  43. canlogserver isotpdump isotpperf isotprecv \
  44. isotpsend isotpserver isotpsniffer isotptun \
  45. jacd jspy jsr testj1939 \
  46. slcan_attach slcand slcanpty
  47. $(foreach a,$(FILES),$(eval $(call GenPlugin,$(a))))
  48. define PartInstall
  49. define Package/canutils-$(1)/install
  50. $(INSTALL_DIR) $$(1)/usr/bin
  51. $(INSTALL_BIN) \
  52. $(PKG_INSTALL_DIR)/usr/bin/$(1) \
  53. $$(1)/usr/bin/
  54. endef
  55. endef
  56. $(foreach file,$(FILES),$(eval $(call PartInstall,$(file))))
  57. $(eval $(call BuildPackage,canutils))
  58. $(foreach file,$(FILES),$(eval $(call BuildPackage,canutils-$(file))))