mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-02 01:20:54 +00:00
3beb732dad
Changes: http://site.icu-project.org/download/62 ABI: https://abi-laboratory.pro/tracker/timeline/icu4c/ PR: 229359 Exp-run by: antoine (only 10.4)
37 lines
795 B
Makefile
37 lines
795 B
Makefile
# Created by: Edward Tomasz Napierala <trasz@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= objecthash
|
|
PORTVERSION= 20160802
|
|
PORTREVISION= 5
|
|
CATEGORIES= devel
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Cross-language way to cryptographically hash JSON objects
|
|
|
|
LICENSE= APACHE20
|
|
|
|
BROKEN_powerpc64= Does not build: error: variably modified hash at file scope
|
|
|
|
LIB_DEPENDS= libicudata.so:devel/icu \
|
|
libjson-c.so:devel/json-c
|
|
|
|
USES= pkgconfig ssl
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= benlaurie
|
|
GH_PROJECT= objecthash
|
|
GH_TAGNAME= 770874c
|
|
|
|
USE_LDCONFIG= yes
|
|
|
|
ALL_TARGET= libobjecthash.so
|
|
|
|
PLIST_FILES= include/objecthash.h lib/libobjecthash.so
|
|
|
|
do-install:
|
|
${INSTALL_LIB} ${WRKSRC}/libobjecthash.so ${STAGEDIR}${PREFIX}/lib
|
|
${INSTALL_DATA} ${WRKSRC}/objecthash.h ${STAGEDIR}${PREFIX}/include
|
|
|
|
.include <bsd.port.mk>
|