34 lines
891 B
Makefile
34 lines
891 B
Makefile
PORTNAME= aws-c-s3
|
|
DISTVERSIONPREFIX= v
|
|
DISTVERSION= 0.3.13
|
|
CATEGORIES= devel
|
|
|
|
MAINTAINER= eduardo@FreeBSD.org
|
|
COMMENT= C99 library implementation for communicating with the S3 service
|
|
WWW= https://github.com/awslabs/aws-c-s3
|
|
|
|
LICENSE= APACHE20
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
LIB_DEPENDS= libaws-c-auth.so:security/aws-c-auth \
|
|
libaws-c-cal.so:security/aws-c-cal \
|
|
libaws-c-common.so:devel/aws-c-common \
|
|
libaws-c-compression.so:devel/aws-c-compression \
|
|
libaws-c-http.so:devel/aws-c-http \
|
|
libaws-c-io.so:devel/aws-c-io \
|
|
libaws-c-sdkutils.so:devel/aws-c-sdkutils \
|
|
libaws-checksums.so:devel/aws-checksums \
|
|
libs2n.so:security/s2n-tls
|
|
|
|
USES= cmake:testing compiler:c11 ssl
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= awslabs
|
|
|
|
USE_LDCONFIG= yes
|
|
|
|
CMAKE_ARGS+= -DCMAKE_PREFIX_PATH=${LOCALBASE}
|
|
CMAKE_ON= BUILD_SHARED_LIBS
|
|
CMAKE_OFF= BUILD_TESTING ENABLE_NET_TESTS
|
|
|
|
.include <bsd.port.mk>
|