mirror of
https://git.freebsd.org/ports.git
synced 2025-05-04 07:27:38 -04:00
39 lines
919 B
Makefile
39 lines
919 B
Makefile
PORTNAME= ocplib-endian
|
|
PORTVERSION= 1.2
|
|
CATEGORIES= devel
|
|
PKGNAMEPREFIX= ocaml-
|
|
|
|
MAINTAINER= freebsd@dev.thsi.be
|
|
COMMENT= Optimized manipulation of integers over the standard byte-array types of OCaml
|
|
WWW= https://github.com/OCamlPro/ocplib-endian
|
|
|
|
LICENSE= LGPL21+ # with a special exception to clause 6
|
|
|
|
BUILD_DEPENDS= cppo:devel/ocaml-cppo
|
|
|
|
USES= ocaml:dune
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= OCamlPro
|
|
|
|
DOCSDIR= ${OCAML_DOCSDIR}/${PORTNAME}
|
|
PORTDOCS= CHANGES.md README.md
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
.if ${ARCH} == powerpc
|
|
USE_BINUTILS= yes
|
|
.endif
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} \
|
|
-e "s/(name ${PORTNAME})/&\n (version ${PORTVERSION})/" \
|
|
${WRKSRC}/dune-project
|
|
|
|
post-install:
|
|
@${STRIP_CMD} \
|
|
${STAGEDIR}${PREFIX}/${OCAML_SITELIBDIR}/${PORTNAME}/bigstring/ocplib_endian_bigstring.cmxs \
|
|
${STAGEDIR}${PREFIX}/${OCAML_SITELIBDIR}/${PORTNAME}/ocplib_endian.cmxs
|
|
|
|
.include <bsd.port.mk>
|