More makefiles for some basic packages

This commit is contained in:
Matthias Schiffer 2013-01-31 11:36:18 +01:00
parent 82d4de5cc9
commit 72b2805a41
4 changed files with 76 additions and 3 deletions

View File

@ -4,7 +4,8 @@
include $(TOPDIR)/rules.mk
PKG_NAME:=gluon-config-mode
PKG_RELEASE:=0.0.1
PKG_VERSION:=0.3.2.99
PKG_RELEASE:=1
PKG_BUILD_DIR := $(BUILD_DIR)/$(PKG_NAME)
@ -14,7 +15,7 @@ define Package/gluon-config-mode
SECTION:=gluon
CATEGORY:=Gluon
TITLE:=Luci based config mode for user friendly setup of new meshnodes
DEPENDS:=+luci-mod-admin-core
DEPENDS:=+gluon-core +luci-mod-admin-core
endef
define Package/gluon-config-mode/description

View File

@ -15,7 +15,7 @@ define Package/gluon-core
endef
define Package/gluon-core/description
The core of the Gluon community wifi mesh firmware framework
Gluon community wifi mesh firmware framework: core
endef
define Build/Prepare

View File

@ -0,0 +1,36 @@
include $(TOPDIR)/rules.mk
PKG_NAME:=gluon-mesh-batman-adv
PKG_VERSION:=0.3.2.99
PKG_RELEASE:=1
PKG_BUILD_DIR := $(BUILD_DIR)/$(PKG_NAME)
include $(INCLUDE_DIR)/package.mk
define Package/gluon-mesh-batman-adv
SECTION:=gluon
CATEGORY:=Gluon
TITLE:=Support for batman-adv meshing
DEPENDS:=+gluon-core
endef
define Package/gluon-mesh-batman-adv/description
Gluon community wifi mesh firmware framework: batman-adv support
endef
define Build/Prepare
mkdir -p $(PKG_BUILD_DIR)
endef
define Build/Configure
endef
define Build/Compile
endef
define Package/gluon-mesh-batman-adv/install
$(CP) ./files/* $(1)/
endef
$(eval $(call BuildPackage,gluon-mesh-batman-adv))

View File

@ -0,0 +1,36 @@
include $(TOPDIR)/rules.mk
PKG_NAME:=gluon-mesh-vpn-fastd
PKG_VERSION:=0.3.2.99
PKG_RELEASE:=1
PKG_BUILD_DIR := $(BUILD_DIR)/$(PKG_NAME)
include $(INCLUDE_DIR)/package.mk
define Package/gluon-mesh-vpn-fastd
SECTION:=gluon
CATEGORY:=Gluon
TITLE:=Support for connecting batman-adv meshes via fastd
DEPENDS:=+gluon-core +gluon-mesh-batman-adv +fastd
endef
define Package/gluon-mesh-vpn-fastd/description
Gluon community wifi mesh firmware framework: fastd support
endef
define Build/Prepare
mkdir -p $(PKG_BUILD_DIR)
endef
define Build/Configure
endef
define Build/Compile
endef
define Package/gluon-mesh-vpn-fastd/install
$(CP) ./files/* $(1)/
endef
$(eval $(call BuildPackage,gluon-mesh-vpn-fastd))