bottlerocket: new package
As simple package, providing a utility ("br") for controlling X10 home automation Firecracker transmitters over serial. Signed-off-by: Brian Norris <computersforpeace@gmail.com>
This commit is contained in:
parent
f0db39bf0e
commit
b4c8651eee
1 changed files with 39 additions and 0 deletions
39
utils/bottlerocket/Makefile
Normal file
39
utils/bottlerocket/Makefile
Normal file
|
@ -0,0 +1,39 @@
|
||||||
|
#
|
||||||
|
# Copyright (C) 2020 Brian Norris <computersforpeace@gmail.com>
|
||||||
|
#
|
||||||
|
# This is free software, licensed under the GNU General Public License v2.
|
||||||
|
# See /LICENSE for more information.
|
||||||
|
#
|
||||||
|
|
||||||
|
include $(TOPDIR)/rules.mk
|
||||||
|
|
||||||
|
PKG_NAME:=bottlerocket
|
||||||
|
PKG_VERSION:=0.04c
|
||||||
|
PKG_RELEASE:=1
|
||||||
|
|
||||||
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
||||||
|
PKG_SOURCE_URL:=https://linuxha.com/bottlerocket
|
||||||
|
PKG_HASH:=deb8fbf8856f87af15fa9883e07b1fddb2aa78f6b4c7d119ae4bd664dc1d19ae
|
||||||
|
|
||||||
|
PKG_MAINTAINER:=Brian Norris <computersforpeace@gmail.com>
|
||||||
|
PKG_LICENSE:=LGPL-2.1-only
|
||||||
|
|
||||||
|
include $(INCLUDE_DIR)/package.mk
|
||||||
|
|
||||||
|
define Package/bottlerocket
|
||||||
|
SECTION:=utils
|
||||||
|
CATEGORY:=Utilities
|
||||||
|
TITLE:=Bottlerocket
|
||||||
|
URL:=https://linuxha.com/bottlerocket/
|
||||||
|
endef
|
||||||
|
|
||||||
|
define Package/bottlerocket/description
|
||||||
|
BottleRocket is an interface to the X10 FireCracker home automation kit.
|
||||||
|
endef
|
||||||
|
|
||||||
|
define Package/bottlerocket/install
|
||||||
|
$(INSTALL_DIR) $(1)/usr/bin
|
||||||
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/br $(1)/usr/bin/
|
||||||
|
endef
|
||||||
|
|
||||||
|
$(eval $(call BuildPackage,bottlerocket))
|
Loading…
Reference in a new issue