1234567891011121314151617181920212223242526272829303132333435363738 |
- include $(TOPDIR)/rules.mk
- PKG_NAME:=ffho-aptimer
- PKG_VERSION:=1
- PKG_RELEASE:=$(GLUON_VERSION).$(GLUON_SITE_CODE)-$(GLUON_RELEASE).$(GLUON_CONFIG_VERSION)
- PKG_BUILD_DIR := $(BUILD_DIR)/$(PKG_NAME)
- include $(INCLUDE_DIR)/package.mk
- define Package/ffho-aptimer
- SECTION:=ffho
- CATEGORY:=FFHO
- TITLE:=Timer for the client wifi
- DEPENDS:=+gluon-core
- MAINTAINER:=Freifunk Hochstift <kontakt@hochstift.freifunk.net>
- URL:=https://git.c3pb.de/freifunk-pb/ffho-packages
- endef
- define Package/ffho-aptimer/description
- Timer for the client wifi
- endef
- define Build/Prepare
- mkdir -p $(PKG_BUILD_DIR)
- endef
- define Build/Configure
- endef
- define Build/Compile
- endef
- define Package/ffho-aptimer/install
- $(CP) ./files/* $(1)/
- endef
- $(eval $(call BuildPackage,ffho-aptimer))
|