mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-24 04:33:24 +00:00
39 lines
811 B
Makefile
39 lines
811 B
Makefile
# ex:ts=8
|
|
# New ports collection makefile for: nomarch
|
|
# Date created: Nov 5, 2001
|
|
# Whom: ijliao
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= nomarch
|
|
PORTVERSION= 1.4
|
|
CATEGORIES= archivers
|
|
MASTER_SITES= ${MASTER_SITE_SUNSITE}
|
|
MASTER_SITE_SUBDIR= utils/compress
|
|
|
|
MAINTAINER= gabor@FreeBSD.org
|
|
COMMENT= Extracts files from the old `.arc' archive format
|
|
|
|
MAN1= nomarch.1
|
|
PLIST_FILES= bin/nomarch
|
|
PORTDOCS= COPYING ChangeLog NEWS README TODO
|
|
|
|
post-patch:
|
|
${REINPLACE_CMD} -e 's|CC=|CC?=|' \
|
|
-e 's|CFLAGS=|CFLAGS?=|' ${WRKSRC}/Makefile
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/nomarch ${PREFIX}/bin
|
|
${INSTALL_MAN} ${WRKSRC}/nomarch.1 ${MAN1PREFIX}/man/man1
|
|
|
|
post-install:
|
|
.if !defined(NOPORTDOCS)
|
|
${MKDIR} ${DOCSDIR}
|
|
.for i in ${PORTDOCS}
|
|
${INSTALL_DATA} ${WRKSRC}/${i} ${DOCSDIR}
|
|
.endfor
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|