Changelog: https://github.com/JuliaStrings/utf8proc/releases/tag/v2.7.0 Approved by: hrs (maintainer timeout, 17+ days) Differential Revision: https://reviews.freebsd.org/D33552
36 lines
704 B
Makefile
36 lines
704 B
Makefile
# Created by: Cheng-Lung Sung <clsung@FreeBSD.org>
|
|
|
|
PORTNAME= utf8proc
|
|
DISTVERSIONPREFIX= v
|
|
DISTVERSION= 2.7.0
|
|
CATEGORIES= textproc devel
|
|
|
|
MAINTAINER= hrs@FreeBSD.org
|
|
COMMENT= UTF-8 processing library
|
|
|
|
LICENSE= MIT
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE.md
|
|
|
|
USES= cmake
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= JuliaStrings
|
|
USE_LDCONFIG= yes
|
|
|
|
CMAKE_ON= BUILD_SHARED_LIBS
|
|
|
|
PLIST_FILES= include/utf8proc.h \
|
|
lib/libutf8proc.so \
|
|
lib/libutf8proc.so.2 \
|
|
lib/libutf8proc.so.2.5.0 \
|
|
libdata/pkgconfig/libutf8proc.pc
|
|
PORTDOCS= NEWS.md README.md
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
post-install-DOCS-on:
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
cd ${WRKSRC} && \
|
|
${INSTALL_DATA} ${PORTDOCS} ${STAGEDIR}${DOCSDIR}
|
|
|
|
.include <bsd.port.mk>
|