mirror of
				git://git.openwrt.org/openwrt/openwrt.git
				synced 2025-10-31 05:54:26 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			41 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			41 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			Makefile
		
	
	
	
	
	
| include $(TOPDIR)/rules.mk
 | |
| 
 | |
| PKG_NAME:=netifd
 | |
| PKG_VERSION:=2012-02-03
 | |
| PKG_RELEASE=$(PKG_SOURCE_VERSION)
 | |
| 
 | |
| PKG_SOURCE_PROTO:=git
 | |
| PKG_SOURCE_URL:=git://nbd.name/luci2/netifd.git
 | |
| PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION)
 | |
| PKG_SOURCE_VERSION:=c0bb8addecae578d7766b94bd6681be82b621675
 | |
| PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION)-$(PKG_SOURCE_VERSION).tar.gz
 | |
| # PKG_MIRROR_MD5SUM:=
 | |
| # CMAKE_INSTALL:=1
 | |
| 
 | |
| include $(INCLUDE_DIR)/package.mk
 | |
| include $(INCLUDE_DIR)/cmake.mk
 | |
| 
 | |
| define Package/netifd
 | |
|   SECTION:=base
 | |
|   CATEGORY:=Base system
 | |
|   DEPENDS:=+libuci +libnl-tiny +libubus +ubus +ubusd +jshn @USE_NETIFD
 | |
|   TITLE:=OpenWrt Network Interface Configuration Daemon
 | |
| endef
 | |
| 
 | |
| TARGET_CFLAGS += \
 | |
| 	-I$(STAGING_DIR)/usr/include/libnl-tiny \
 | |
| 	-I$(STAGING_DIR)/usr/include
 | |
| 
 | |
| CMAKE_OPTIONS += \
 | |
| 	-DLIBNL_LIBS=-lnl-tiny \
 | |
| 	-DDEBUG=1
 | |
| 
 | |
| define Package/netifd/install
 | |
| 	$(INSTALL_DIR) $(1)/sbin
 | |
| 	$(INSTALL_BIN) $(PKG_BUILD_DIR)/netifd $(1)/sbin/
 | |
| 	$(CP) ./files/* $(1)/
 | |
| 	$(CP) $(PKG_BUILD_DIR)/dummy/netifd-proto.sh $(1)/lib/netifd/
 | |
| endef
 | |
| 
 | |
| $(eval $(call BuildPackage,netifd))
 |