pkgsrc/security/md4-collision/Makefile
jlam 758d912e33 Update package Makefile now that bsd.pkg.extract.mk is using the
"extract" script for extraction.  Many cases where a custom EXTRACT_CMD
simply copied the distfile into the work directory are no longer
needed.  The extract script also hides differences between pax and
tar behind a common command-line interface, so we no longer need code
that's conditional on whether EXTRACT_USING is tar or pax.
2006-01-21 18:57:40 +00:00

23 lines
508 B
Makefile

# $NetBSD: Makefile,v 1.2 2006/01/21 18:57:42 jlam Exp $
DISTNAME= md4coll
PKGNAME= md4-collision-20051118
CATEGORIES= security
MASTER_SITES= http://www.stachliu.com/
EXTRACT_SUFX= .c
MAINTAINER= tech-pkg@NetBSD.org
HOMEPAGE= http://www.stachliu.com/collisions.html
COMMENT= MD5 Collision generator
WRKSRC= ${WRKDIR}
INSTALLATION_DIRS= bin
do-build:
cd ${WRKSRC} && ${CC} ${CFLAGS} -o md4coll md4coll.c
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/md4coll ${PREFIX}/bin
.include "../../mk/bsd.pkg.mk"