mirror of
https://github.com/Ysurac/openmptcprouter-feeds.git
synced 2025-02-12 18:41:51 +00:00
50 lines
1.3 KiB
Makefile
50 lines
1.3 KiB
Makefile
|
#
|
||
|
# Copyright (C) 2020 Ycarus (Yannick Chabanois) <ycarus@zugaina.org> for OpenMPTCProuter project
|
||
|
#
|
||
|
# This is free software, licensed under the GNU General Public License v2.
|
||
|
# See /LICENSE for more information.
|
||
|
#
|
||
|
|
||
|
include $(TOPDIR)/rules.mk
|
||
|
|
||
|
PKG_NAME:=mptcpd
|
||
|
PKG_VERSION:=0.3
|
||
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
||
|
PKG_SOURCE_URL:=https://github.com/intel/mptcpd/releases/download/v0.3
|
||
|
PKG_HASH:=c2e1711e01b11f16a0c91dc0f3815b6460e603f52a31225d3a4d4012e858c967
|
||
|
PKG_RELEASE:=1
|
||
|
PKG_MAINTAINER:=Ycarus (Yannick Chabanois) <ycarus@zugaina.org>
|
||
|
|
||
|
PKG_FORTIFY_SOURCE:=2
|
||
|
PKG_BUILD_PARALLEL:=1
|
||
|
PKG_BUILD_DEPENDS:=!USE_GLIBC:argp-standalone
|
||
|
|
||
|
include $(INCLUDE_DIR)/package.mk
|
||
|
|
||
|
define Package/$(PKG_NAME)
|
||
|
SECTION:=net
|
||
|
CATEGORY:=Network
|
||
|
DEPENDS:=+libell
|
||
|
TITLE:=mptcpd
|
||
|
URL:=https://github.com/intel/mptcpd
|
||
|
endef
|
||
|
|
||
|
define Package/$(PKG_NAME)/conffiles
|
||
|
/etc/mptcpd/mptcpd.conf
|
||
|
endef
|
||
|
|
||
|
TARGET_CFLAGS += -D_GNU_SOURCE -Wno-unused-result -Wno-format-nonliteral
|
||
|
|
||
|
define Build/Compile
|
||
|
+$(MAKE_VARS) $(MAKE) $(PKG_JOBS) -C $(PKG_BUILD_DIR) $(MAKE_FLAGS)
|
||
|
endef
|
||
|
|
||
|
define Package/$(PKG_NAME)/install
|
||
|
$(INSTALL_DIR) $(1)/usr/sbin
|
||
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/src/mptcpd $(1)/usr/sbin/$(PKG_NAME)
|
||
|
$(INSTALL_DIR) $(1)/etc/mptcpd
|
||
|
$(INSTALL_DATA) $(PKG_BUILD_DIR)/etc/mptcpd.conf $(1)/etc/mptcpd/mptcpd.conf
|
||
|
endef
|
||
|
|
||
|
$(eval $(call BuildPackage,$(PKG_NAME)))
|