openbsd-ports/devel/libavl/Makefile
kevlo c8090d54c9 Initial import of libavl-1.4.0
Libavl is a library for balanced binary trees. Balanced binary trees
provide guaranteed O(lg n) performance for list insertion, deletion, and
search operations. libavl is the most complete free balanced binary tree
library on the net today, supporting AVL trees in plain, threaded, and
right-threaded forms as well as plain red-black trees.
2001-09-08 06:50:36 +00:00

32 lines
698 B
Makefile

# $OpenBSD: Makefile,v 1.1.1.1 2001/09/08 06:50:36 kevlo Exp $
COMMENT= "library for balanced binary trees"
VERSION= 1.4.0
DISTNAME= avl-${VERSION}
PKGNAME= libavl-${VERSION}
CATEGORIES= devel
NEED_VERSION= 1.454
HOMEPAGE= http://www.msu.edu/user/pfaffben/avl/
MAINTAINER= Kevin Lo <kevlo@openbsd.org>
PERMIT_PACKAGE_CDROM= Yes
PERMIT_PACKAGE_FTP= Yes
PERMIT_DISTFILES_CDROM= Yes
PERMIT_DISTFILES_FTP= Yes
BUILD_DEPENDS= texi2html::textproc/texi2html
MASTER_SITES= ${MASTER_SITE_GNU}
MASTER_SITE_SUBDIR= avl
CONFIGURE_STYLE= gnu
post-install:
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/libavl
${INSTALL_DATA} ${WRKSRC}/avl.html ${PREFIX}/share/doc/libavl
.include <bsd.port.mk>