diff options
author | Karel Kočí <cynerd@email.cz> | 2019-02-10 16:06:31 +0100 |
---|---|---|
committer | Karel Kočí <cynerd@email.cz> | 2019-02-10 16:06:31 +0100 |
commit | 5f7b7084a81813356006dfe093f834f6072409b3 (patch) | |
tree | c1fd2324a63882dd34a6ddd3640fc372d4cef12f /bigclown-gateway/Makefile | |
parent | 0103e62bed6a118f9b8935c126790160fe55b02c (diff) | |
download | openwrt-personal-pkgs-5f7b7084a81813356006dfe093f834f6072409b3.tar.gz openwrt-personal-pkgs-5f7b7084a81813356006dfe093f834f6072409b3.tar.bz2 openwrt-personal-pkgs-5f7b7084a81813356006dfe093f834f6072409b3.zip |
Add packages I am pussing to upstream
Diffstat (limited to 'bigclown-gateway/Makefile')
-rw-r--r-- | bigclown-gateway/Makefile | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/bigclown-gateway/Makefile b/bigclown-gateway/Makefile new file mode 100644 index 0000000..068edfd --- /dev/null +++ b/bigclown-gateway/Makefile @@ -0,0 +1,46 @@ +# This is free software, licensed under the GNU General Public License v2. +# See /LICENSE for more information. +# + +include $(TOPDIR)/rules.mk + +PKG_NAME:=bigclown-gateway +PKG_VERSION:=1.16.1 +PKG_RELEASE:=1 + +PKG_SOURCE_URL:=https://codeload.github.com/bigclownlabs/bch-gateway/tar.gz/v$(PKG_VERSION)? +PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz +PKG_HASH:=9dad4663be59b8184e4501aca70295e91271d3416197d8dd123b9fbcdbcca638 +PKG_LICENSE:=MIT +PKG_BUILD_DIR:=$(BUILD_DIR)/bch-gateway-$(PKG_VERSION) + +include $(INCLUDE_DIR)/package.mk +include ../../../lang/python/python3-package.mk + +define Package/$(PKG_NAME) + SECTION:=utils + CATEGORY:=Utilities + SUBMENU:=BigClown + URL:=https://github.com/bigclownlabs/bch-gateway + TITLE:=BigCLown gateway + DEPENDS:=+kmod-usb-serial-ftdi +kmod-usb-acm +click-log +python3-paho-mqtt +python3-pyserial +python3-pyyaml +python3-simplejson + python3-schema python3-appdirs +endef + +define Py3Package/$(PKG_NAME)/install + $(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 Py3Build/Compile/Default) +endef + +$(eval $(call Py3Package,$(PKG_NAME))) +$(eval $(call BuildPackage,$(PKG_NAME))) |