Add a few SPDX tags
[openwrt/staging/yousong.git] / package / network / services / openvpn-easy-rsa / Makefile
1 #
2 # Copyright (C) 2010-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:=openvpn-easy-rsa
11
12 PKG_REV:=ff5bfd1dd8e548cb24d302742af3894f893ef92f
13 PKG_VERSION:=2013-01-30
14 PKG_RELEASE=2
15
16 PKG_SOURCE_PROTO:=git
17 PKG_SOURCE_URL:=https://github.com/OpenVPN/easy-rsa.git
18 PKG_SOURCE_VERSION:=$(PKG_REV)
19 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION)-$(PKG_REV).tar.gz
20 PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION)
21 PKG_LICENSE:=GPL-2.0
22
23 PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(BUILD_VARIANT)/$(PKG_SOURCE_SUBDIR)
24
25 include $(INCLUDE_DIR)/package.mk
26
27 define Package/openvpn-easy-rsa
28 TITLE:=Simple shell scripts to manage a Certificate Authority
29 SECTION:=net
30 CATEGORY:=Network
31 URL:=http://openvpn.net
32 SUBMENU:=VPN
33 DEPENDS:=+openssl-util
34 endef
35
36 define Package/openvpn-easy-rsa/conffiles
37 /etc/easy-rsa/keys/serial
38 /etc/easy-rsa/keys/index.txt
39 /etc/easy-rsa/vars
40 endef
41
42 define Build/Configure
43
44 endef
45
46 define Build/Compile
47
48 endef
49
50 define Package/openvpn-easy-rsa/install
51 $(INSTALL_DIR) $(1)/usr/sbin
52 $(CP) $(PKG_BUILD_DIR)/easy-rsa/2.0/{build-*,clean-all,inherit-inter,list-crl,pkitool,revoke-full,sign-req,whichopensslcnf} $(1)/usr/sbin/
53 $(INSTALL_DIR) $(1)/etc/easy-rsa
54 $(INSTALL_DATA) $(PKG_BUILD_DIR)/easy-rsa/2.0/openssl-1.0.0.cnf $(1)/etc/easy-rsa/openssl-1.0.0.cnf
55 $(INSTALL_DATA) $(PKG_BUILD_DIR)/easy-rsa/2.0/vars $(1)/etc/easy-rsa/vars
56 $(INSTALL_DIR) $(1)/etc/easy-rsa/keys
57 $(INSTALL_DATA) files/easy-rsa.index $(1)/etc/easy-rsa/keys/index.txt
58 $(INSTALL_DATA) files/easy-rsa.serial $(1)/etc/easy-rsa/keys/serial
59 endef
60
61 $(eval $(call BuildPackage,openvpn-easy-rsa))