blob: b2b7eed2c13b75998c9449e988ad0ce4993a2009 (
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
|
# 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:= boringssl
PKG_VERSION:= be2ee342d3781ddb954f91f8a7e660c6f59e87e5
PKG_RELEASE:= 1
PKG_GIT:= hash
PKG_DESCR:= ssl library
PKG_SECTION:= libs/crypto
PKG_BUILDDEP:= cmake-host
PKG_NEEDS:= c++
PKG_URL:= https://boringssl.googlesource.com/
PKG_SITES:= https://boringssl.googlesource.com/boringssl.git
PKG_OPTS:= dev
include $(ADK_TOPDIR)/mk/package.mk
$(eval $(call PKG_template,BORINGSSL,boringssl,$(PKG_VERSION)-$(PKG_RELEASE),$(PKG_DEPENDS),$(PKG_DESCR),$(PKG_SECTION),$(PKG_OPTS)))
WRKBUILD= $(WRKDIR)/$(PKG_NAME)-obj
CONFIG_STYLE:= cmake
INSTALL_STYLE:= manual
boringssl-install:
include $(ADK_TOPDIR)/mk/pkg-bottom.mk
|