mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-27 00:57:50 +00:00
6d5d6429d5
Changes: http://site.icu-project.org/download/68 ABI: https://abi-laboratory.pro/tracker/timeline/icu4c/ Reported by: GitHub (watch releases)
38 lines
796 B
Makefile
38 lines
796 B
Makefile
# Created by: Dmitry Marakasov <amdmi3@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= liblcf
|
|
PORTVERSION= 0.6.2
|
|
PORTREVISION= 1
|
|
CATEGORIES= games
|
|
|
|
MAINTAINER= amdmi3@FreeBSD.org
|
|
COMMENT= Library to handle RPG Maker 2000/2003 and EasyRPG projects
|
|
|
|
LICENSE= MIT
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
LIB_DEPENDS= libicui18n.so:devel/icu \
|
|
libexpat.so:textproc/expat2
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= EasyRPG
|
|
|
|
USES= cmake compiler:c++14-lang pkgconfig shared-mime-info
|
|
USE_LDCONFIG= yes
|
|
CMAKE_ARGS= -DCMAKE_INSTALL_LIBDIR=lib \
|
|
-DCMAKE_INSTALL_INCLUDEDIR=include \
|
|
-DDISABLE_UPDATE_MIMEDB=OFF
|
|
|
|
PORTDOCS= AUTHORS.md README.md
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
post-install-DOCS-on:
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
.for f in ${PORTDOCS}
|
|
${INSTALL_DATA} ${WRKSRC}/${f} ${STAGEDIR}${DOCSDIR}/
|
|
.endfor
|
|
|
|
.include <bsd.port.mk>
|