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.

39 lines
985 B

  1. #
  2. # Copyright (C) 2020 Brian Norris <computersforpeace@gmail.com>
  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:=bottlerocket
  9. PKG_VERSION:=0.04c
  10. PKG_RELEASE:=1
  11. PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
  12. PKG_SOURCE_URL:=https://linuxha.com/bottlerocket
  13. PKG_HASH:=deb8fbf8856f87af15fa9883e07b1fddb2aa78f6b4c7d119ae4bd664dc1d19ae
  14. PKG_MAINTAINER:=Brian Norris <computersforpeace@gmail.com>
  15. PKG_LICENSE:=LGPL-2.1-only
  16. include $(INCLUDE_DIR)/package.mk
  17. define Package/bottlerocket
  18. SECTION:=utils
  19. CATEGORY:=Utilities
  20. TITLE:=Bottlerocket
  21. URL:=https://linuxha.com/bottlerocket/
  22. endef
  23. define Package/bottlerocket/description
  24. BottleRocket is an interface to the X10 FireCracker home automation kit.
  25. endef
  26. define Package/bottlerocket/install
  27. $(INSTALL_DIR) $(1)/usr/bin
  28. $(INSTALL_BIN) $(PKG_BUILD_DIR)/br $(1)/usr/bin/
  29. endef
  30. $(eval $(call BuildPackage,bottlerocket))