e3b403395f
It can read and write LCF and XML files. liblcf is part of the EasyRPG Project. WWW: https://easy-rpg.org/
37 lines
729 B
Makefile
37 lines
729 B
Makefile
# Created by: Dmitry Marakasov <amdmi3@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= liblcf
|
|
PORTVERSION= 0.3.2
|
|
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= autoreconf libtool pathfix pkgconfig
|
|
PATHFIX_MAKEFILEIN= Makefile.am
|
|
GNU_CONFIGURE= yes
|
|
INSTALL_TARGET= install-strip
|
|
USE_LDCONFIG= yes
|
|
|
|
PORTDOCS= AUTHORS README
|
|
|
|
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>
|