diff options
author | Karel Kočí <karel.koci@nic.cz> | 2019-02-04 14:24:08 +0100 |
---|---|---|
committer | Karel Kočí <karel.koci@nic.cz> | 2019-02-04 14:24:08 +0100 |
commit | ee1de2a3d1376e1aa19cc4deaaece86b32ab14aa (patch) | |
tree | 776190b57b72e62a0eb0ba751aa08ff50e9f21e7 /bigclown-gateway/Makefile | |
parent | 647f5119e89ef2d67f270a954e38633badab1621 (diff) | |
download | openwrt-personal-pkgs-ee1de2a3d1376e1aa19cc4deaaece86b32ab14aa.tar.gz openwrt-personal-pkgs-ee1de2a3d1376e1aa19cc4deaaece86b32ab14aa.tar.bz2 openwrt-personal-pkgs-ee1de2a3d1376e1aa19cc4deaaece86b32ab14aa.zip |
Drop bigclown because I am pushing it upstream
Diffstat (limited to 'bigclown-gateway/Makefile')
-rw-r--r-- | bigclown-gateway/Makefile | 36 |
1 files changed, 0 insertions, 36 deletions
diff --git a/bigclown-gateway/Makefile b/bigclown-gateway/Makefile deleted file mode 100644 index 3866ea2..0000000 --- a/bigclown-gateway/Makefile +++ /dev/null @@ -1,36 +0,0 @@ -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 $(INCLUDE_DIR)/autopkg-tag.mk -include $(INCLUDE_DIR)/package.mk -include $(TOPDIR)/feeds/packages/lang/python/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))) |