blob: 8ca613915ad3a5685411d2b2bafc0950ea26c012 (
plain)
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
|
# This file is part of the OpenADK project. OpenADK is copyrighted
# material, please see the LICENCE file in the top-level directory.
include $(ADK_TOPDIR)/rules.mk
PKG_NAME:= stunnel
PKG_VERSION:= 5.08
PKG_RELEASE:= 1
PKG_HASH:= 830b21d24cd237e96f4d7993be43553d4eba4d3cfa2660faa78dec8d41d314fc
PKG_DESCR:= encryption wrapper
PKG_SECTION:= net/security
PKG_DEPENDS:= libopenssl
PKG_BUILDDEP:= openssl
PKG_URL:= https://www.stunnel.org
PKG_SITES:= https://www.stunnel.org/downloads/
DISTFILES:= ${PKG_NAME}-${PKG_VERSION}.tar.gz
include $(ADK_TOPDIR)/mk/package.mk
$(eval $(call PKG_template,STUNNEL,stunnel,$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
AUTOTOOL_STYLE:= autoreconf
CONFIGURE_ARGS+= --with-ssl=${STAGING_TARGET_DIR}/usr \
--disable-libwrap
stunnel-install:
$(INSTALL_DIR) $(IDIR_STUNNEL)/usr/bin
$(INSTALL_BIN) $(WRKINST)/usr/bin/stunnel \
$(IDIR_STUNNEL)/usr/bin
include ${ADK_TOPDIR}/mk/pkg-bottom.mk
|