firmware/src/packages/fff/fff-ra/Makefile
Adrian Schmutzler b69469a0b9 packages/fff: remove unneeded Build/Prepare and Build/Configure
Build/Prepare and Build/Configure are not required for packages
which only contain local files and do not need any compilation.

Remove them.

Note that Build/Compile needs to be present and empty to overwrite
the defaults, though.

Signed-off-by: Adrian Schmutzler <freifunk@adrianschmutzler.de>
Reviewed-by: Robert Langhammer <rlanghammer@web.de>
2020-12-22 13:47:45 +01:00

32 lines
611 B
Makefile

include $(TOPDIR)/rules.mk
PKG_NAME:=fff-ra
PKG_RELEASE:=2
PKG_BUILD_DIR:=$(BUILD_DIR)/fff-ra
include $(INCLUDE_DIR)/package.mk
define Package/fff-ra
SECTION:=base
CATEGORY:=Freifunk
TITLE:=Freifunk-Franken Router Advertisements
URL:=https://www.freifunk-franken.de
DEPENDS:=+odhcpd
endef
define Package/fff-ra/description
This is the fff-ra for the Freifunk Franken Firmware
It is used to configure odhcpd to send Router Advertisements for use as gateway.
endef
define Build/Compile
# nothing
endef
define Package/fff-ra/install
$(CP) ./files/* $(1)/
endef
$(eval $(call BuildPackage,fff-ra))