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.

81 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:=1
  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_INSTALL:=1
  18. PKG_BUILD_PARALLEL:=1
  19. include $(INCLUDE_DIR)/package.mk
  20. define Package/canutils/Default
  21. SECTION:=utils
  22. CATEGORY:=Utilities
  23. URL:=https://github.com/linux-can/can-utils
  24. TITLE:=CAN userspace utilities and tools
  25. endef
  26. define Package/canutils
  27. $(call Package/canutils/Default)
  28. MENU:=1
  29. endef
  30. define GenPlugin
  31. define Package/$(addprefix canutils-,$(1))
  32. $(call Package/canutils/Default)
  33. DEPENDS:=canutils
  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. MAKE_FLAGS += \
  49. PREFIX="$(CONFIGURE_PREFIX)"
  50. define Package/canutils/install
  51. true
  52. endef
  53. define PartInstall
  54. define Package/canutils-$(1)/install
  55. $(INSTALL_DIR) $$(1)/usr/bin
  56. $(INSTALL_BIN) \
  57. $(PKG_INSTALL_DIR)/usr/bin/$(1) \
  58. $$(1)/usr/bin/
  59. endef
  60. endef
  61. $(foreach file,$(FILES),$(eval $(call PartInstall,$(file))))
  62. $(eval $(call BuildPackage,canutils))
  63. $(foreach file,$(FILES),$(eval $(call BuildPackage,canutils-$(file))))