firmware/src/packages/fff/fff-fastd/Makefile

47 lines
966 B
Makefile

include $(TOPDIR)/rules.mk
PKG_NAME:=fff-fastd
PKG_VERSION:=1
PKG_RELEASE:=2
PKG_BUILD_DIR:=$(BUILD_DIR)/fff-fastd
include $(INCLUDE_DIR)/package.mk
define Package/fff-fastd
SECTION:=base
CATEGORY:=Freifunk
TITLE:=Freifunk-Franken fastd configuration script
URL:=http://www.freifunk-franken.de
DEPENDS:=+@BUSYBOX_CUSTOM \
+@BUSYBOX_CONFIG_FEATURE_WGET_TIMEOUT \
+@FASTD_ENABLE_METHOD_NULL \
+@FASTD_ENABLE_CIPHER_NULL \
+@FASTD_WITH_STATUS_SOCKET \
+fastd \
+fff-random
endef
define Package/fff-fastd/description
This is the fastd for the Freifunk Franken Firmware
It is used to configure fastd.
endef
define Build/Prepare
echo "all: " > $(PKG_BUILD_DIR)/Makefile
endef
define Build/Configure
# nothing
endef
define Build/Compile
# nothing
endef
define Package/fff-fastd/install
$(CP) ./files/* $(1)/
endef
$(eval $(call BuildPackage,fff-fastd))