36 lines
658 B
Makefile
36 lines
658 B
Makefile
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=gluon-alfred
|
|
PKG_VERSION:=1
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_BUILD_DIR := $(BUILD_DIR)/$(PKG_NAME)
|
|
|
|
include $(GLUONDIR)/include/package.mk
|
|
|
|
|
|
define Package/gluon-alfred
|
|
SECTION:=gluon
|
|
CATEGORY:=Gluon
|
|
DEPENDS:=+gluon-core +gluon-respondd +gluon-neighbour-info +micrond +alfred
|
|
TITLE:=Configure alfred
|
|
endef
|
|
|
|
define Build/Prepare
|
|
mkdir -p $(PKG_BUILD_DIR)
|
|
endef
|
|
|
|
define Build/Configure
|
|
endef
|
|
|
|
define Build/Compile
|
|
$(call GluonSrcDiet,./luasrc,$(PKG_BUILD_DIR)/luadest/)
|
|
endef
|
|
|
|
define Package/gluon-alfred/install
|
|
$(CP) ./files/* $(1)/
|
|
$(CP) $(PKG_BUILD_DIR)/luadest/* $(1)/
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,gluon-alfred))
|