diff options
author | Andrey A. Chernov <ache@FreeBSD.org> | 1994-12-22 12:33:40 +0000 |
---|---|---|
committer | Andrey A. Chernov <ache@FreeBSD.org> | 1994-12-22 12:33:40 +0000 |
commit | 548e1e022e43b95f4efb7f2e282a64cac787a236 (patch) | |
tree | c7900f05d29c243c74afa0bb0dc0657dab6734f1 /archivers | |
parent | 69fe54dd80185c58e9111ea12633c9fe365f2bec (diff) | |
download | ports-548e1e022e43b95f4efb7f2e282a64cac787a236.tar.gz ports-548e1e022e43b95f4efb7f2e282a64cac787a236.zip |
Notes
Diffstat (limited to 'archivers')
-rw-r--r-- | archivers/zip/Makefile | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/archivers/zip/Makefile b/archivers/zip/Makefile new file mode 100644 index 000000000000..e049884d69f9 --- /dev/null +++ b/archivers/zip/Makefile @@ -0,0 +1,21 @@ +# New ports collection makefile for: zip +# Version required: 2.0.1 +# Date created: 22 Dec 1994 +# Whom: ache +# +# $Id: Makefile,v 1.4 1994/12/17 07:35:01 ache Exp $ +# +DISTNAME= zip201 +EXTRACT_SUFX= .tar.Z +MASTER_SITES= ftp://garbo.uwasa.fi/unix/arcers/ +ALL_TARGET= freebsd + +pre-install: + @mkdir -p ${PREFIX}/bin + @mkdir -p ${PREFIX}/man/man1 + +install: + cd ${WRKSRC}; install -c -o bin -g bin zip.1 zipgrep.1 ${PREFIX}/man/man1 + cd ${WRKSRC}; install -c -o bin -g bin zip zipnote zipsplit zipcloak zipgrep ${PREFIX}/bin + +.include <bsd.port.mk> |