mirror of
https://git.freebsd.org/ports.git
synced 2025-07-12 14:59:13 -04:00
Please note that lots of invocation of MAKE_CMD here are wrong as they do not properly respect MAKE_ENV and friends With hat: portmgr
34 lines
659 B
Makefile
34 lines
659 B
Makefile
# Created by: Hung-Yi Chen <gaod@hychen.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= libroxml
|
|
PORTVERSION= 2.2.2
|
|
PORTREVISION= 1
|
|
CATEGORIES= textproc
|
|
MASTER_SITES= GOOGLE_CODE
|
|
|
|
MAINTAINER= gaod@hychen.org
|
|
COMMENT= Minimum, easy-to-use, C implementation for xml file parsing
|
|
|
|
LICENSE= LGPL21
|
|
|
|
PROJECTHOST= libroxml
|
|
|
|
USES= gmake
|
|
# Workaround overwriting DESTDIR var
|
|
DESTDIRNAME= NONE
|
|
MAKE_ARGS= DESTDIR=${STAGEDIR}${PREFIX}
|
|
USE_LDCONFIG= yes
|
|
|
|
PLIST_FILES= bin/roxml \
|
|
lib/libroxml.so \
|
|
lib/libroxml.so.0 \
|
|
lib/libroxml.a \
|
|
include/roxml.h \
|
|
libdata/pkgconfig/libroxml.pc \
|
|
man/man1/roxml.1.gz
|
|
|
|
pre-build:
|
|
@cd ${WRKSRC} && ${MAKE_CMD} clean
|
|
|
|
.include <bsd.port.mk>
|