pkgsrc/archivers/mousetar/Makefile
jlam 9c8b5ede43 Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no
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.
2006-03-04 21:28:51 +00:00

43 lines
957 B
Makefile

# $NetBSD: Makefile,v 1.14 2006/03/04 21:28:53 jlam Exp $
#
DISTNAME= mousetar-20021217
CATEGORIES= sysutils
MASTER_SITES= ftp://ftp.NetBSD.org/pub/NetBSD/misc/mouse/tar/
DISTFILES= tar.c tar.man
MAINTAINER= pkgsrc-users@NetBSD.org
#HOMEPAGE= none
COMMENT= der Mouse's version of tar program
PKG_INSTALLATION_TYPES= overwrite pkgviews
NOT_FOR_PLATFORM+= Interix-*-* # no sys/mtio.h tape support
WRKSRC= ${WRKDIR}
.include "../../mk/bsd.prefs.mk"
.if ${MACHINE_PLATFORM:MNetBSD-[2-9].*-*} != ""
CPPFLAGS+= -DTAR_INODE_INTERNAL
.endif
.if ${OPSYS} == "Linux"
CPPFLAGS+= -DLINUX_NAMLEN
.endif
INSTALLATION_DIRS= bin man/man1
do-extract:
for f in ${DISTFILES}; do \
${CP} ${DISTDIR}/$$f ${WRKDIR}; \
done
do-build:
cd ${WRKSRC}; ${CC} ${CPPFLAGS} ${CFLAGS} tar.c -o mousetar
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/mousetar ${PREFIX}/bin
${INSTALL_MAN} ${WRKSRC}/tar.man ${PREFIX}/man/man1/mousetar.1
.include "../../mk/bsd.pkg.mk"