Skip to content

Commit

Permalink
Introduce new lime-basic-noui metapackage
Browse files Browse the repository at this point in the history
Signed-off-by: Pau Escrich <p4u@dabax.net>
  • Loading branch information
p4u committed Apr 26, 2017
1 parent 3ed43de commit e32884e
Showing 1 changed file with 26 additions and 1 deletion.
27 changes: 26 additions & 1 deletion packages/lime-basic/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ PKG_VERSION=$(GIT_COMMIT_DATE)-$(GIT_COMMIT_TSTAMP)
include $(INCLUDE_DIR)/package.mk

define Package/$(PKG_NAME)
TITLE:=libremesh standard metapackage with minimal requirements
TITLE:=libremesh minimal standard metapackage
SECTION:=lime
CATEGORY:=LiMe
SUBMENU:=Collections
Expand All @@ -31,15 +31,40 @@ define Package/$(PKG_NAME)
+bmx6-auto-gw-mode +lime-hwd-ground-routing
endef

define Package/$(PKG_NAME)-no-ui
TITLE:=libremesh minimal standard metapackage (no webui)
SECTION:=lime
CATEGORY:=LiMe
SUBMENU:=Collections
MAINTAINER:=Pau Escrich <p4u@dabax.net>
URL:=http://libremesh.org
DEPENDS:=+lime-system +lime-proto-bmx6 +lime-proto-batadv \
+lime-proto-anygw +lime-proto-wan +dnsmasq-lease-share \
+dnsmasq-distributed-hosts \
+lime-hwd-openwrt-wan \
+bmx6-auto-gw-mode +lime-hwd-ground-routing
endef


define Package/$(PKG_NAME)/description
Metapackage depending on all the required to run a basic standard libremesh node
endef

define Package/$(PKG_NAME)-no-ui/description
Metapackage depending on all the required to run a basic standard libremesh node (no webui)
endef


define Build/Compile
endef

define Package/$(PKG_NAME)/install
$(INSTALL_DIR) $(1)/
endef

define Package/$(PKG_NAME)-no-ui/install
$(INSTALL_DIR) $(1)/
endef

$(eval $(call BuildPackage,$(PKG_NAME)))
$(eval $(call BuildPackage,$(PKG_NAME)-no-ui))

0 comments on commit e32884e

Please sign in to comment.