2014-01-12 18:23:59 +00:00
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
|
|
|
PKG_NAME:=gluon-alfred
|
2014-01-12 21:35:00 +00:00
|
|
|
PKG_VERSION:=1
|
|
|
|
PKG_RELEASE:=1
|
2014-01-12 18:23:59 +00:00
|
|
|
|
|
|
|
PKG_BUILD_DIR := $(BUILD_DIR)/$(PKG_NAME)
|
|
|
|
|
2016-07-10 18:08:44 +00:00
|
|
|
include $(GLUONDIR)/include/package.mk
|
|
|
|
|
2014-01-12 18:23:59 +00:00
|
|
|
|
|
|
|
define Package/gluon-alfred
|
|
|
|
SECTION:=gluon
|
|
|
|
CATEGORY:=Gluon
|
2016-11-30 19:29:25 +00:00
|
|
|
DEPENDS:=+gluon-core +gluon-respondd +gluon-neighbour-info gluon-mesh-batman-adv +micrond +alfred
|
2014-01-12 18:23:59 +00:00
|
|
|
TITLE:=Configure alfred
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Build/Prepare
|
|
|
|
mkdir -p $(PKG_BUILD_DIR)
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Build/Configure
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Build/Compile
|
2016-07-10 18:08:44 +00:00
|
|
|
$(call GluonSrcDiet,./luasrc,$(PKG_BUILD_DIR)/luadest/)
|
2014-01-12 18:23:59 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/gluon-alfred/install
|
|
|
|
$(CP) ./files/* $(1)/
|
2016-07-10 18:08:44 +00:00
|
|
|
$(CP) $(PKG_BUILD_DIR)/luadest/* $(1)/
|
2014-01-12 18:23:59 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call BuildPackage,gluon-alfred))
|