71c8e827e8
* New maintainer Jov <amutu@amutu.com> * Moved BROKEN_*, BROKEN_*(13.1.5) comes before *_DEPENDS(13.1.6)[1] * Sorted USES, Keep related varibles together(13.1.7)[1] Changelog: http://site.icu-project.org/download/59 [1] https://www.freebsd.org/doc/en/books/porters-handbook/porting-samplem.html#porting-samplem-order PR: 220554 Submitted by: Jov <amutu@amutu.com> (maintainer) Reviewed by: lifanov (mentor) Approved by: lifanov (mentor) Differential Revision: https://reviews.freebsd.org/D11597
35 lines
777 B
Makefile
35 lines
777 B
Makefile
# Created by: Edward Tomasz Napierala <trasz@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= objecthash
|
|
PORTVERSION= 20160802
|
|
CATEGORIES= devel
|
|
|
|
MAINTAINER= amutu@amutu.com
|
|
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>
|