Skip to content
Snippets Groups Projects
Makefile 699 B
Newer Older
include $(TOPDIR)/rules.mk

PKG_NAME:=ffnw-autoupdater-mod
PKG_VERSION:=1
PKG_RELEASE:=1

PKG_BUILD_DIR := $(BUILD_DIR)/$(PKG_NAME)

include $(INCLUDE_DIR)/package.mk

define Package/ffnw-autoupdater-mod
  SECTION:=Daemon
  CATEGORY:=Freifunk Nordwest
Jan-Tarek Butt's avatar
Jan-Tarek Butt committed
  TITLE:=custom autoupdater special to split the testing from stable network
endef

define Package/ffnw-autoupdater-mod/description
Jan-Tarek Butt's avatar
Jan-Tarek Butt committed
  custom autoupdater special to split the testing from stable network
endef

define Build/Prepare
  mkdir -p $(PKG_BUILD_DIR)
endef

define Build/Configure
endef

define Build/Compile
endef

define Package/ffnw-autoupdater-mod/install
Jan-Tarek Butt's avatar
Jan-Tarek Butt committed
	$(CP) ./files/* $(1)/
endef

$(eval $(call BuildPackage,ffnw-autoupdater-mod))