1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-25 04:43:33 +00:00

Use INSTALL_* aliases defined in bsd.port.mk.

This commit is contained in:
Satoshi Asami 1996-09-11 04:44:19 +00:00
parent 6b78b2d60d
commit 743867856c
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=3753

View File

@ -3,7 +3,7 @@
# Date created: 16 May 1996
# Whom: ache
#
# $Id: Makefile,v 1.4 1996/05/27 03:44:31 asami Exp $
# $Id: Makefile,v 1.5 1996/09/06 14:18:10 ache Exp $
#
# WWW site: http://www.fccc.edu/users/muquit/Count.html
@ -30,8 +30,11 @@ post-build:
do-install:
cd ${WRKSRC}; yes "" | ./Count-install
cd ${WRKSRC}/utils; \
${INSTALL} -s -c -m ${BINMODE} -o ${BINOWN} -g ${BINGRP} mkstrip ${PREFIX}/bin; \
${INSTALL} -c -m ${MANMODE} -o ${MANOWN} -g ${MANGRP} mkstrip.1 ${PREFIX}/man/man1; \
${INSTALL} -c -m ${BINMODE} -o ${BINOWN} -g ${BINGRP} mkstrip.sh ${PREFIX}/lib/Counter/digits
${INSTALL_PROGRAM} mkstrip ${PREFIX}/bin; \
${INSTALL_MAN} mkstrip.1 ${PREFIX}/man/man1; \
${INSTALL_SCRIPT} mkstrip.sh ${PREFIX}/lib/Counter/digits
.if !defined(NOMANCOMPRESS)
gzip -9nf ${PREFIX}/man/man1/mkstrip.1
.endif
.include <bsd.port.mk>