blob: 81292349af3d1b19b8698ec0e4d96d9ef4d57dcd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
# $NetBSD: Makefile,v 1.6 2005/12/29 06:22:17 jlam Exp $
#
DISTNAME= free-1.0
CATEGORIES= sysutils
MASTER_SITES= # empty
DISTFILES= # empty
MAINTAINER= tech-pkg@NetBSD.org
COMMENT= Displays memory usage
# This pkg doesn't regard USE_INET6 (leave this comment for README-IPv6.html!)
WRKSRC= ${WRKDIR}
EXTRACT_ONLY= # empty
NO_CHECKSUM= yes
NO_CONFIGURE= yes
NO_BUILD= yes
INSTALLATION_DIRS= bin man/man1
do-install:
${INSTALL_SCRIPT} ${FILESDIR}/free ${PREFIX}/bin/free
${INSTALL_MAN} ${FILESDIR}/free.1 ${PREFIX}/man/man1/free.1
.include "../../mk/bsd.pkg.mk"
|