274c64a1ba
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
14 lines
252 B
Makefile
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>
|