diff options
author | kim <kim@pkgsrc.org> | 1999-03-07 00:37:19 +0000 |
---|---|---|
committer | kim <kim@pkgsrc.org> | 1999-03-07 00:37:19 +0000 |
commit | 9b713da5b71618f3e07424adba876ba9246ba359 (patch) | |
tree | 8117d1cf703b3f1e57da1f1c6af9dcc90583bd29 /misc | |
parent | 1bde14f3a437c185fd90b07c19dad8d62752c6de (diff) | |
download | pkgsrc-9b713da5b71618f3e07424adba876ba9246ba359.tar.gz |
Call commands using variables.
Diffstat (limited to 'misc')
-rw-r--r-- | misc/remind/Makefile | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/misc/remind/Makefile b/misc/remind/Makefile index 55d35642b92..990ad68e6b1 100644 --- a/misc/remind/Makefile +++ b/misc/remind/Makefile @@ -1,13 +1,14 @@ -# $NetBSD: Makefile,v 1.1.1.1 1999/03/02 06:14:48 kim Exp $ +# $NetBSD: Makefile,v 1.2 1999/03/07 00:37:19 kim Exp $ DISTNAME= remind-03.00.19 -PKGNAME!= echo ${DISTNAME} | sed -e 's/0\([0-9]\)/\1/g' CATEGORIES= misc MASTER_SITES= ftp://ftp.doe.carleton.ca/pub/remind-3.0/ EXTRACT_SUFX= .tgz +.include "../../mk/bsd.pkg.mk" + +PKGNAME!= ${ECHO} ${DISTNAME} | ${SED} -e 's/0\([0-9]\)/\1/g' + MAINTAINER= kim@tac.nyc.ny.us GNU_CONFIGURE= yes - -.include "../../mk/bsd.pkg.mk" |