Lzip compressed data format (.lz). Lziprecover is able to repair slightly damaged files, produce a correct file by merging the good parts of two or more damaged copies, extract data from damaged files, test file integrity, remove the damaged members from multimember files, and more. WWW: http://www.nongnu.org/lzip/lziprecover.html
29 lines
707 B
Makefile
29 lines
707 B
Makefile
# Created by: Alexey Dokuchaev <danfe@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= lziprecover
|
|
PORTVERSION= 1.21
|
|
CATEGORIES= archivers
|
|
MASTER_SITES= SAVANNAH/lzip/${PORTNAME}
|
|
|
|
MAINTAINER= danfe@FreeBSD.org
|
|
COMMENT= Recovery tool for Lzip compressed data files
|
|
|
|
LICENSE= GPLv2+
|
|
|
|
USES= tar:lz
|
|
HAS_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --prefix=${PREFIX} --infodir=${PREFIX}/${INFO_PATH} \
|
|
--mandir=${MANPREFIX}/man CXXFLAGS="${CXXFLAGS}"
|
|
|
|
INFO= ${PORTNAME}
|
|
PLIST_FILES= bin/${PORTNAME} man/man1/${PORTNAME}.1.gz
|
|
PORTDOCS= AUTHORS ChangeLog NEWS README
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
post-install-DOCS-on:
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/,} ${STAGEDIR}${DOCSDIR}
|
|
|
|
.include <bsd.port.mk>
|