forked from scutclient/scutclient
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile--OpenWrt
45 lines (35 loc) · 913 Bytes
/
Makefile--OpenWrt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#
# Copyright (C) 2006-2008 OpenWrt.org
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
#
include $(TOPDIR)/rules.mk
include $(INCLUDE_DIR)/kernel.mk
PKG_NAME:=scutclient
PKG_RELEASE:=1
PKG_VERSION:=1.4
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
include $(INCLUDE_DIR)/package.mk
define Package/scutclient
SECTION:=net
CATEGORY:=Network
TITLE:=SCUT 802.1X client by Forward
DEPENDS:=+libpcap
endef
define Package/scutclient/description
Support SCUT private authentication protocol.
Thanks to njit8021xclient make by liuqun.
endef
CONFIGURE_ARGS += \
$(NULL)
define Build/Prepare
$(call Build/Prepare/Default)
endef
define Build/Configure
$(call Build/Configure/Default)
endef
define Package/scutclient/install
$(MAKE) -C $(PKG_BUILD_DIR) install-exec DESTDIR=$(1) libpcap.a
endef
$(eval $(call BuildPackage,scutclient))