Add more license tags with SPDX identifiers
[openwrt.git] / package / utils / px5g-standalone / Makefile
1 #
2 # Copyright (C) 2010-2014 Jo-Philipp Wich <xm@subsignal.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:=px5g
11 PKG_RELEASE:=2
12
13 PKG_LICENSE:=LGPL-2.1
14 PKG_LICENSE_FILES:=
15
16 PKG_BUILD_DIR := $(BUILD_DIR)/$(PKG_NAME)
17 PKG_CHECK_FORMAT_SECURITY:=0
18
19 include $(INCLUDE_DIR)/package.mk
20
21 define Package/px5g-standalone
22   SECTION:=utils
23   CATEGORY:=Utilities
24   TITLE:=Standalone X.509 certificate generator (standalone version)
25   MAINTAINER:=Jo-Philipp Wich <xm@subsignal.org>
26 endef
27
28 define Package/px5g-standalone/description
29  Px5g is a tiny standalone X.509 certificate generator.
30  It suitable to create key files and certificates in DER
31  and PEM format for use with stunnel, uhttpd and others.
32 endef
33
34 define Build/Prepare
35         mkdir -p $(PKG_BUILD_DIR)
36         $(CP) ./src/* $(PKG_BUILD_DIR)/
37 endef
38
39 define Package/px5g-standalone/install
40         $(INSTALL_DIR) $(1)/usr/sbin
41         $(INSTALL_BIN) $(PKG_BUILD_DIR)/px5g $(1)/usr/sbin/px5g
42 endef
43
44 $(eval $(call BuildPackage,px5g-standalone))