blob: b30a8c99bc2447b086714a7e992c9592197e4ed2 (
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
|
# $NetBSD: Makefile,v 1.4 2005/02/21 20:26:14 hubertf Exp $
#
DISTNAME= free-1.0
CATEGORIES= sysutils
MASTER_SITES= # empty
DISTFILES= # empty
MAINTAINER= tech-pkg@NetBSD.org
COMMENT= Displays memory usage
USE_PKGINSTALL= YES
# 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
do-install:
${INSTALL_SCRIPT} ${FILESDIR}/free ${PREFIX}/bin/free
${INSTALL_MAN} ${FILESDIR}/free.1 ${PREFIX}/man/man1/free.1
.include "../../mk/bsd.pkg.mk"
|