diff options
author | Karel Kočí <karel.koci@nic.cz> | 2018-10-09 09:59:52 +0200 |
---|---|---|
committer | Karel Kočí <karel.koci@nic.cz> | 2018-10-09 10:00:59 +0200 |
commit | e80d577eca049b4968d30c77ab646fa4fcd01780 (patch) | |
tree | af48600c83613401d7c8be7c7f6db5f616ce68af /bigclown-gateway/Makefile | |
parent | 3532fa47380fb79d6c6edb32039c1b491f64709a (diff) | |
parent | d32f4c85ac3634a3a4c35d4fec7dc8131c9cfcab (diff) | |
download | openwrt-personal-pkgs-e80d577eca049b4968d30c77ab646fa4fcd01780.tar.gz openwrt-personal-pkgs-e80d577eca049b4968d30c77ab646fa4fcd01780.tar.bz2 openwrt-personal-pkgs-e80d577eca049b4968d30c77ab646fa4fcd01780.zip |
Merge branch 'turris3x'
Diffstat (limited to 'bigclown-gateway/Makefile')
-rw-r--r-- | bigclown-gateway/Makefile | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/bigclown-gateway/Makefile b/bigclown-gateway/Makefile new file mode 100644 index 0000000..9cfaf3e --- /dev/null +++ b/bigclown-gateway/Makefile @@ -0,0 +1,36 @@ +include $(TOPDIR)/rules.mk + +PKG_NAME:=bigclown-gateway +PKG_RELEASE:=2 +PKG_SOURCE_URL:=https://github.com/bigclownlabs/bch-gateway.git +PKG_MAINTAINER:=Karel Kočí <cynerd@email.cz> + +include $(TOPDIR)/feeds/personal/autopkg-tag.mk +include $(INCLUDE_DIR)/package.mk +$(call include_mk, python3-package.mk) + +define Package/$(PKG_NAME) + TITLE:=BigCLown gateway + DEPENDS:=+python3 +mosquitto +mosquitto-client +kmod-usb-serial-ftdi +kmod-usb-acm +python3-paho-mqtt +python3-pyyaml +python3-pyserial +python3-simplejson +endef + +define Py3Package/$(PKG_NAME)/install + $(INSTALL_DIR) $(1)/usr/bin + $(INSTALL_BIN) ./files/bcg $(1)/usr/bin/bcg + $(INSTALL_DIR) $(1)/etc/config + $(INSTALL_CONF) ./files/config $(1)/etc/config/bigclown-gateway + $(INSTALL_DIR) $(1)/etc/init.d + $(INSTALL_BIN) ./files/init $(1)/etc/init.d/bigclown-gateway +endef + +define Package/$(PKG_NAME)/conffiles +/etc/config/bigclown-gateway +endef + +define Build/Compile + sed -i 's/@@VERSION@@/$(PKG_VERSION)/' "$(PKG_BUILD_DIR)/setup.py" + $(call Build/Compile/Py3Mod,,install --prefix="/usr" --root=$(PKG_INSTALL_DIR)) +endef + +$(eval $(call Py3Package,$(PKG_NAME))) +$(eval $(call BuildPackage,$(PKG_NAME))) |