firmware/src/packages/fff/fff-babeld/Makefile
Adrian Schmutzler 3d36158899 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>
2021-01-01 08:43:43 +01:00

32 lines
616 B
Makefile

include $(TOPDIR)/rules.mk
PKG_NAME:=fff-babeld
PKG_RELEASE:=5
PKG_BUILD_DIR:=$(BUILD_DIR)/fff-babeld
include $(INCLUDE_DIR)/package.mk
define Package/fff-babeld
SECTION:=base
CATEGORY:=Freifunk
TITLE:=Freifunk-Franken babeld configuration example
URL:=http://www.freifunk-franken.de
DEPENDS:=+babeld
endef
define Package/fff-babeld/description
This is the Freifunk Franken Firmware babeld package.
This package provides an example babeld configuration.
endef
define Build/Compile
# nothing
endef
define Package/fff-babeld/install
$(CP) ./files/* $(1)/
endef
$(eval $(call BuildPackage,fff-babeld))