netifd: update to latest git HEAD
[openwrt/openwrt.git] / package / network / config / netifd / Makefile
1 include $(TOPDIR)/rules.mk
2
3 PKG_NAME:=netifd
4 PKG_RELEASE:=2
5
6 PKG_SOURCE_PROTO:=git
7 PKG_SOURCE_URL=$(PROJECT_GIT)/project/netifd.git
8 PKG_SOURCE_DATE:=2018-01-24
9 PKG_SOURCE_VERSION:=af3cadb6a46ba93e8a729e71d82b176275931e62
10 PKG_MIRROR_HASH:=66722c55bcf8a145a7c1b7291306271dc5996e9adbac0c7a01a693fe15cbe053
11 PKG_MAINTAINER:=Felix Fietkau <nbd@nbd.name>
12
13 PKG_LICENSE:=GPL-2.0
14 PKG_LICENSE_FILES:=
15
16 PKG_BUILD_PARALLEL:=1
17
18 include $(INCLUDE_DIR)/package.mk
19 include $(INCLUDE_DIR)/cmake.mk
20
21 define Package/netifd
22 SECTION:=base
23 CATEGORY:=Base system
24 DEPENDS:=+libuci +libnl-tiny +libubus +ubus +ubusd +jshn +libubox
25 TITLE:=OpenWrt Network Interface Configuration Daemon
26 endef
27
28 TARGET_CFLAGS += \
29 -I$(STAGING_DIR)/usr/include/libnl-tiny \
30 -I$(STAGING_DIR)/usr/include
31
32 CMAKE_OPTIONS += \
33 -DLIBNL_LIBS=-lnl-tiny \
34 -DDEBUG=1
35
36 define Package/netifd/install
37 $(INSTALL_DIR) $(1)/sbin
38 $(INSTALL_BIN) $(PKG_BUILD_DIR)/netifd $(1)/sbin/
39 $(CP) ./files/* $(1)/
40 $(CP) $(PKG_BUILD_DIR)/scripts/* $(1)/lib/netifd/
41 endef
42
43 $(eval $(call BuildPackage,netifd))