freebsd-dev/usr.sbin/pkg_install/version/Makefile
Bruce A. Mah 274c64a1ba Implement a package number comparison routine for pkg_version(1)
that actually conforms to the Porters Handbook.

Add a -t option to pkg_version(1) for doing comparison testing.

Add a script (and make test target) to do some regression tests on
the package number comparison routine, to help debug future revisions.

Submitted by:		knu
Procrastination by:	bmah
2001-04-03 21:26:32 +00:00

14 lines
252 B
Makefile

# $FreeBSD$
MAINTAINER= bmah@FreeBSD.org
MAN= pkg_version.1
beforeinstall:
${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \
${.CURDIR}/pkg_version.pl ${DESTDIR}${BINDIR}/pkg_version
test:
./test-pkg_version.sh
.include <bsd.prog.mk>