mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-13 03:03:15 +00:00
4e74162b8b
Approved by: novel (mentor)
30 lines
619 B
Makefile
30 lines
619 B
Makefile
# New ports collection makefile for: ecm
|
|
# Date created: 9 Aug 2005
|
|
# Whom: Emanuel Haupt <ehaupt@critical.ch>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= ecm
|
|
PORTVERSION= 1.0
|
|
CATEGORIES= archivers
|
|
MASTER_SITES= http://critical.ch/distfiles/
|
|
|
|
MAINTAINER= ehaupt@FreeBSD.org
|
|
COMMENT= Compresses CD images by stripping unnecessary EDC/ECC data
|
|
|
|
PLIST_FILES= bin/ecm bin/unecm
|
|
PORTDOCS= format.txt
|
|
|
|
do-install:
|
|
.for f in ${PORTNAME} un${PORTNAME}
|
|
${INSTALL_PROGRAM} ${WRKSRC}/${f} ${PREFIX}/bin
|
|
.endfor
|
|
|
|
.if !defined(NOPORTDOCS)
|
|
${MKDIR} ${DOCSDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/${PORTDOCS} ${DOCSDIR}
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|