03bfe8a2cf
- Get rid of pkg-plist. - While I'm here, remove harmful interactivity. PR: ports/90188 Submitted by: Igor Pokrovsky (maintainer)
36 lines
737 B
Makefile
36 lines
737 B
Makefile
# New ports collection makefile for: szip
|
|
# Date created: 15 January 2002
|
|
# Whom: Igor Pokrovsky <tiamat@telegraph.spb.ru>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= szip
|
|
PORTVERSION= 1.12b
|
|
PORTREVISION= 1
|
|
CATEGORIES= archivers
|
|
MASTER_SITES= http://www.compressconsult.com/szip/
|
|
DISTNAME= sz${PORTVERSION:S/.//}_src
|
|
|
|
MAINTAINER= ip@doom.homeunix.org
|
|
COMMENT= A fast compression utility
|
|
|
|
USE_GMAKE= yes
|
|
ONLY_FOR_ARCHS= i386 amd64
|
|
|
|
WRKSRC= ${WRKDIR}
|
|
|
|
PLIST_FILES= bin/${PORTNAME}
|
|
PORTDOCS= history.txt readme.txt techinfo.txt
|
|
|
|
do-build:
|
|
${GMAKE} -C ${WRKDIR}
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKDIR}/${PORTNAME} ${PREFIX}/bin
|
|
.if !defined(NOPORTDOCS)
|
|
@${MKDIR} ${DOCSDIR}
|
|
${INSTALL_DATA} ${WRKDIR}/*.txt ${DOCSDIR}
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|