diff options
author | dmcmahill <dmcmahill@pkgsrc.org> | 2000-04-01 00:30:53 +0000 |
---|---|---|
committer | dmcmahill <dmcmahill@pkgsrc.org> | 2000-04-01 00:30:53 +0000 |
commit | 106da7e385d6bbec2b7e8f69358f2cdd9e8e3d37 (patch) | |
tree | d6db62646c4a4d571de5055ffad293deab7a875f /editors/mg2a | |
parent | 2e7052268bb664e23c7770955c6484d97e42064b (diff) | |
download | pkgsrc-106da7e385d6bbec2b7e8f69358f2cdd9e8e3d37.tar.gz |
move the very short post-extract script into the Makefile.
Also, the initial package was provided by John Refling <johnr@imageworks.com>
in PR pkg/9073. Thanks John.
Diffstat (limited to 'editors/mg2a')
-rw-r--r-- | editors/mg2a/Makefile | 5 | ||||
-rw-r--r-- | editors/mg2a/scripts/post-extract | 5 |
2 files changed, 4 insertions, 6 deletions
diff --git a/editors/mg2a/Makefile b/editors/mg2a/Makefile index 48d908f260b..0f8137c2583 100644 --- a/editors/mg2a/Makefile +++ b/editors/mg2a/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.1.1.1 2000/04/01 00:21:25 dmcmahill Exp $ +# $NetBSD: Makefile,v 1.2 2000/04/01 00:30:53 dmcmahill Exp $ # Top level for mg2a package make... nothing unusual # in this package - john refling # @@ -13,6 +13,9 @@ MAINTAINER= refling@comet.lbl.gov USE_CONFIGURE= NO +post-extract: + cd ${WRKSRC} ; ${CP} sys/bsd/Makefile . + do-install: ${INSTALL_PROGRAM} ${WRKSRC}/mg ${PREFIX}/bin/mg ${INSTALL_MAN} ${WRKSRC}/mg.1 ${PREFIX}/man/man1 diff --git a/editors/mg2a/scripts/post-extract b/editors/mg2a/scripts/post-extract deleted file mode 100644 index 5480a0511e3..00000000000 --- a/editors/mg2a/scripts/post-extract +++ /dev/null @@ -1,5 +0,0 @@ -#!/bin/sh -# Just links the unix makefile - john refling -# $NetBSD: post-extract,v 1.1.1.1 2000/04/01 00:21:26 dmcmahill Exp $ -cd ${WRKSRC} -cp sys/bsd/Makefile . |