1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-06 06:30:19 +00:00
freebsd-ports/devel/htable/Makefile
Frederic Culot 02a06c807c Update my MAINTAINER address to culot@FreeBSD.org.
Approved by:	sahil@ (mentor)
2010-10-20 05:53:20 +00:00

32 lines
640 B
Makefile

# New ports collection makefile for: htable
# Date created: 13 Aug 2010
# Whom: Frederic Culot <frederic@culot.org>
#
# $FreeBSD$
#
PORTNAME= htable
PORTVERSION= 1.2
CATEGORIES= devel
MASTER_SITES= ftp://ftp2.culot.org/culot/
MAINTAINER= culot@FreeBSD.org
COMMENT= Lightweight implementation of hash tables in C
USE_GMAKE= yes
WRKSRC= ${WRKDIR}/${PORTNAME}
MAN3= htable.3
PLIST_FILES= include/htable.h
NO_BUILD= yes
do-install:
${INSTALL_DATA} ${WRKSRC}/src/htable.h ${PREFIX}/include
${INSTALL_MAN} ${WRKSRC}/src/htable.3 ${MAN3PREFIX}/man/man3
regression-test:
cd ${WRKSRC}/tst && ${GMAKE} test
.include <bsd.port.mk>