mirror of https://git.FreeBSD.org/ports.git
34 lines
778 B
Makefile
34 lines
778 B
Makefile
PORTNAME= inifiled
|
|
PORTVERSION= 2.0.0
|
|
PORTREVISION= 3
|
|
DISTVERSIONPREFIX= v
|
|
CATEGORIES= devel
|
|
|
|
MAINTAINER= acm@FreeBSD.org
|
|
COMMENT= Compile-time .ini file parser and writer generator for D
|
|
WWW= https://github.com/burner/inifiled
|
|
|
|
LICENSE= BSL
|
|
|
|
BUILD_DEPENDS= ldmd2:lang/ldc \
|
|
dub:devel/dub
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= burner
|
|
|
|
DUB_CMD= ${LOCALBASE}/bin/dub build --build=release
|
|
D_INCLUDE_DIR= ${PREFIX}/include/d
|
|
D_LIB_DIR= ${PREFIX}/lib/d
|
|
DC= ${PREFIX}/bin/ldmd2
|
|
|
|
do-build:
|
|
@cd ${WRKSRC} && DC=${DC} ${DUB_CMD}
|
|
|
|
do-install:
|
|
@${MKDIR} ${STAGEDIR}${D_INCLUDE_DIR}
|
|
@${MKDIR} ${STAGEDIR}${D_LIB_DIR}
|
|
${INSTALL_DATA} ${WRKSRC}/libinifiled.a ${STAGEDIR}${D_LIB_DIR}
|
|
cd ${WRKSRC}/source && ${COPYTREE_SHARE} . ${STAGEDIR}${D_INCLUDE_DIR} "-name *\.d"
|
|
|
|
.include <bsd.port.mk>
|