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.

46 lines
1.2 KiB

  1. #
  2. # This software is licensed under the Public Domain.
  3. #
  4. include $(TOPDIR)/rules.mk
  5. PKG_NAME:=dawn
  6. PKG_SOURCE_DATE:=2020-03-28
  7. PKG_RELEASE:=1
  8. PKG_SOURCE_PROTO:=git
  9. PKG_SOURCE_URL:=https://github.com/berlin-open-wireless-lab/DAWN.git
  10. PKG_SOURCE_VERSION:=b967c1e0b68bc05ec5456ab4ecb1a7f0ae75a1b7
  11. PKG_MIRROR_HASH:=78a2c0350ba7e8bbbb5045a057e13dbbb661622bcafc9ec96f4cdc20c998e028
  12. PKG_MAINTAINER:=Nick Hainke <vincent@systemli.org>
  13. PKG_LICENSE:=GPL-2.0-only
  14. PKG_LICENSE_FILES:=LICENSE
  15. PKG_BUILD_PARALLEL:=1
  16. include $(INCLUDE_DIR)/package.mk
  17. include $(INCLUDE_DIR)/cmake.mk
  18. define Package/dawn
  19. SECTION:=net
  20. CATEGORY:=Network
  21. TITLE:=Decentralized wifi controller
  22. URL:=https://github.com/berlin-open-wireless-lab/DAWN.git
  23. DEPENDS:=$(DRV_DEPENDS) +libubus +libubox +libblobmsg-json +libuci +libgcrypt +libiwinfo +umdns
  24. endef
  25. define Package/dawn/description
  26. This package implements a decentralized wireless daemon.
  27. endef
  28. define Package/dawn/install
  29. $(INSTALL_DIR) $(1)/usr/sbin
  30. $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/dawn $(1)/usr/sbin/dawn
  31. $(INSTALL_DIR) $(1)/etc/init.d
  32. $(INSTALL_BIN) ./files/dawn.init $(1)/etc/init.d/dawn
  33. $(INSTALL_DIR) $(1)/etc/config
  34. $(INSTALL_CONF) ./files/dawn.config $(1)/etc/config/dawn
  35. endef
  36. $(eval $(call BuildPackage,dawn))