9c8b5ede43
developer is officially maintaining the package. The rationale for changing this from "tech-pkg" to "pkgsrc-users" is that it implies that any user can try to maintain the package (by submitting patches to the mailing list). Since the folks most likely to care about the package are the folks that want to use it or are already using it, this would leverage the energy of users who aren't developers.
26 lines
730 B
Makefile
26 lines
730 B
Makefile
# $NetBSD: Makefile,v 1.12 2006/03/04 21:29:11 jlam Exp $
|
|
#
|
|
|
|
DISTNAME= sdbm
|
|
# this is the Dec. 1990 release with some race condition fixes from an
|
|
# unknown outside source:
|
|
PKGNAME= sdbm-90.12.1
|
|
CATEGORIES= databases
|
|
MASTER_SITES= ftp://tsx-11.mit.edu/pub/linux/sources/libs/
|
|
EXTRACT_SUFX= .tar.Z
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
COMMENT= Substitute DBM, an implementation of the `real' ndbm library
|
|
|
|
WRKSRC= ${WRKDIR}
|
|
MAKE_ENV+= LIBDIR=${PREFIX}/lib NOLINT=1 \
|
|
LIBOWN=${LIBOWN:Q} LIBGRP=${LIBGRP:Q}
|
|
|
|
post-extract:
|
|
@cd ${WRKDIR} && ${SH} sdbm.shar >/dev/null
|
|
|
|
post-install:
|
|
${INSTALL_DATA} ${WRKSRC}/sdbm.h ${PREFIX}/include/
|
|
${INSTALL_MAN} ${WRKSRC}/sdbm.3 ${PREFIX}/man/man3/
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|