diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2010-03-25 15:46:39 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2010-03-25 15:46:39 +0000 |
commit | 2cf4946597e5a6ba55ca40359494bc5732c1b9e3 (patch) | |
tree | b3dbbafe7f0848e8329f495e8a3d45200e88a775 /package/px5g/Makefile | |
parent | 169642253f6861ebe356386428692e93126a9df7 (diff) | |
download | upstream-2cf4946597e5a6ba55ca40359494bc5732c1b9e3.tar.gz upstream-2cf4946597e5a6ba55ca40359494bc5732c1b9e3.tar.bz2 upstream-2cf4946597e5a6ba55ca40359494bc5732c1b9e3.zip |
add px5g (moved from LuCI trunk)
SVN-Revision: 20429
Diffstat (limited to 'package/px5g/Makefile')
-rw-r--r-- | package/px5g/Makefile | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/package/px5g/Makefile b/package/px5g/Makefile new file mode 100644 index 0000000000..638f8c0c4e --- /dev/null +++ b/package/px5g/Makefile @@ -0,0 +1,39 @@ +# +# Copyright (C) 2010 Jo-Philipp Wich <xm@subsignal.org> +# +# This is free software, licensed under the GNU General Public License v2. +# See /LICENSE for more information. +# + +include $(TOPDIR)/rules.mk + +PKG_NAME:=px5g +PKG_RELEASE:=1 + +PKG_BUILD_DIR := $(BUILD_DIR)/$(PKG_NAME) + +include $(INCLUDE_DIR)/package.mk + +define Package/px5g + SECTION:=utils + CATEGORY:=Utilities + TITLE:=Standalone X.509 certificate generator +endef + +define Package/px5g/description + Px5g is a tiny standalone X.509 certificate generator. + It suitable to create key files and certificates in DER + and PEM format for use with stunnel, uhttpd and others. +endef + +define Build/Prepare + mkdir -p $(PKG_BUILD_DIR) + $(CP) ./src/* $(PKG_BUILD_DIR)/ +endef + +define Package/px5g/install + $(INSTALL_DIR) $(1)/usr/sbin + $(INSTALL_BIN) $(PKG_BUILD_DIR)/px5g $(1)/usr/sbin/px5g +endef + +$(eval $(call BuildPackage,px5g)) |