summaryrefslogtreecommitdiff
path: root/textproc/pure-xml/Makefile
blob: 009e59bdfeca00eed26208e1503b7536ea624f96 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# Created by: Zhihao Yuan <lichray@gmail.com>
# $FreeBSD$

PORTNAME=	pure-xml
PORTVERSION=	0.6
PORTREVISION=	3
CATEGORIES=	textproc
MASTER_SITES=	https://cdn.bitbucket.org/purelang/pure-lang/downloads/
DIST_SUBDIR=	pure

MAINTAINER=	ports@FreeBSD.org
COMMENT=	Pure language interface for libxml2 and libxslt

LICENSE=	GPLv3 LGPL3
LICENSE_COMB=	dual

USES=		pure
USE_GNOME=	libxml2 libxslt
PORTDOCS=	README
PORTEXAMPLES=	*
OPTIONS_DEFINE=	DOCS EXAMPLES

PLIST_FILES=	lib/pure/xml.pure \
		lib/pure/xml.so

post-install:
	@${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/pure/xml.so
	@${MKDIR} ${STAGEDIR}${DOCSDIR}
	${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${STAGEDIR}${DOCSDIR}
	@${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
	@(cd ${WRKSRC}/examples/ && ${COPYTREE_SHARE} . ${STAGEDIR}${EXAMPLESDIR})

.include <bsd.port.mk>