license info - revert r43155
[openwrt/openwrt.git] / package / network / services / authsae / Makefile
1
2 # Copyright (C) 2007-2013 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7
8 include $(TOPDIR)/rules.mk
9
10 PKG_NAME:=authsae
11 PKG_VERSION:=2014-06-09
12 PKG_RELEASE=$(PKG_SOURCE_VERSION)
13
14 PKG_SOURCE_PROTO:=git
15 PKG_SOURCE_URL:=git://github.com/cozybit/authsae.git
16 PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION)
17 PKG_SOURCE_VERSION:=8531ab158910a525d4bcbb3ad02c08342f6987f2
18 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION)-$(PKG_SOURCE_VERSION).tar.gz
19
20 PKG_BUILD_PARALLEL:=1
21 CMAKE_INSTALL:=1
22
23 CMAKE_OPTIONS += -DSYSCONF_INSTALL_DIR=/etc
24
25 PKG_MAINTAINER:=Felix Fietkau <nbd@openwrt.org>
26 PKG_LICENSE:=BSD-4-Clause
27
28 include $(INCLUDE_DIR)/package.mk
29 include $(INCLUDE_DIR)/cmake.mk
30
31 define Package/authsae
32 SECTION:=net
33 CATEGORY:=Network
34 TITLE:=80211s mesh security
35 DEPENDS:=+libopenssl +libconfig +libnl-tiny +@OPENSSL_WITH_EC
36 endef
37
38 TARGET_CFLAGS += -D_GNU_SOURCE
39
40 define Package/authsae/install
41 $(INSTALL_DIR) $(1)/usr/bin
42 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/* $(1)/usr/bin
43 $(INSTALL_DIR) $(1)/lib/wifi
44 $(INSTALL_DATA) ./files/lib/wifi/authsae.sh $(1)/lib/wifi/
45 endef
46
47 $(eval $(call BuildPackage,authsae))