8f93a244c3
- Switch to new test framework Approved by: portmgr blanket
28 lines
589 B
Makefile
28 lines
589 B
Makefile
# 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
|
|
|
|
LICENSE= BSD2CLAUSE
|
|
|
|
USES= gmake
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}
|
|
|
|
PLIST_FILES= include/htable.h \
|
|
man/man3/htable.3.gz
|
|
|
|
NO_BUILD= yes
|
|
TEST_TARGET= test
|
|
TEST_WRKSRC= ${WRKSRC}/tst
|
|
|
|
do-install:
|
|
${INSTALL_DATA} ${WRKSRC}/src/htable.h ${STAGEDIR}${PREFIX}/include
|
|
${INSTALL_MAN} ${WRKSRC}/src/htable.3 ${STAGEDIR}${MAN3PREFIX}/man/man3
|
|
|
|
.include <bsd.port.mk>
|