firmware/src/packages/fff/fff-ra/Makefile
Adrian Schmutzler b0fc342d01 packages/fff: drop redundant PKG_BUILD_DIR
PKG_BUILD_DIR has the following default values set in include/package.mk,
in case no BUILD_VARIANT is set:

With PKG_VERSION set: $(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
Without PKG_VERSION:  $(BUILD_DIR)/$(PKG_NAME)

Consequently, all PKG_BUILD_DIR definitions in our packages are
redundant. Remove them.

Signed-off-by: Adrian Schmutzler <freifunk@adrianschmutzler.de>
2020-12-28 18:20:47 +01:00

30 lines
575 B
Makefile

include $(TOPDIR)/rules.mk
PKG_NAME:=fff-ra
PKG_RELEASE:=2
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))