blob: 354d9070ade7914acc11fb761cab5bf174b09947 (
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
|
# Created by: Frederic Culot <frederic@culot.org>
# $FreeBSD$
PORTNAME= htable
PORTVERSION= 1.2
CATEGORIES= devel
MASTER_SITES= LOCAL/culot
MAINTAINER= culot@FreeBSD.org
COMMENT= Lightweight implementation of hash tables in C
USES= gmake
WRKSRC= ${WRKDIR}/${PORTNAME}
PLIST_FILES= include/htable.h \
man/man3/htable.3.gz
NO_BUILD= yes
do-install:
${INSTALL_DATA} ${WRKSRC}/src/htable.h ${STAGEDIR}${PREFIX}/include
${INSTALL_MAN} ${WRKSRC}/src/htable.3 ${STAGEDIR}${MAN3PREFIX}/man/man3
regression-test:
cd ${WRKSRC}/tst && ${MAKE_CMD} test
.include <bsd.port.mk>
|