html-xml-utils contains a number of simple utilities for manipulating HTML and XML files. They perform actions such as number headings in HTML, make a table of contents, pretty-print, and so on. ok jca@
32 lines
753 B
Makefile
32 lines
753 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2014/09/04 07:04:57 bentley Exp $
|
|
|
|
COMMENT = simple utilities for manipulating HTML and XML files
|
|
|
|
DISTNAME = html-xml-utils-6.7
|
|
|
|
CATEGORIES = textproc
|
|
|
|
HOMEPAGE = http://www.w3.org/Tools/HTML-XML-utils/
|
|
|
|
MAINTAINER = Anthony J. Bentley <anthony@cathet.us>
|
|
|
|
# W3C license
|
|
PERMIT_PACKAGE_CDROM = Yes
|
|
|
|
WANTLIB += c crypto curl idn ssl z
|
|
|
|
MASTER_SITES = http://www.w3.org/Tools/HTML-XML-utils/
|
|
|
|
MODULES = converters/libiconv
|
|
LIB_DEPENDS = devel/libidn \
|
|
net/curl
|
|
|
|
CONFIGURE_STYLE = gnu
|
|
|
|
post-install:
|
|
# W3C license requires a copy of the license to be distributed
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/html-xml-utils
|
|
${INSTALL_DATA} ${WRKSRC}/COPYING ${PREFIX}/share/doc/html-xml-utils
|
|
|
|
.include <bsd.port.mk>
|