35 lines
731 B
Makefile
35 lines
731 B
Makefile
# New ports collection makefile for: unarj
|
|
# Date created: 28 Dec 1994
|
|
# Whom: ache
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= unarj
|
|
PORTVERSION= 2.65
|
|
PORTREVISION= 2
|
|
CATEGORIES= archivers
|
|
MASTER_SITES= ${MASTER_SITE_LOCAL}
|
|
MASTER_SITE_SUBDIR= ache
|
|
EXTRACT_SUFX= .tgz
|
|
|
|
MAINTAINER= ache@FreeBSD.org
|
|
COMMENT= Allows files to be extracted from ARJ archives
|
|
|
|
PLIST_FILES= bin/unarj
|
|
PORTDOCS= unarj.txt technote.txt
|
|
|
|
post-patch:
|
|
${CP} ${FILESDIR}/sanitize.c ${WRKSRC}
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/unarj ${PREFIX}/bin
|
|
.if !defined(NOPORTDOCS)
|
|
${INSTALL} -d -m 755 -o ${SHAREOWN} -g ${SHAREGRP} ${DOCSDIR}
|
|
.for i in ${PORTDOCS}
|
|
${INSTALL_DATA} ${WRKSRC}/${i} ${DOCSDIR}
|
|
.endfor
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|