6c41546717
'--merge' is now able to fix files with thousands of scattered errors per member by grouping the errors into clusters and then merging the files as if each cluster were a single error. The option '-a, --trailing-error' now works with '-l, --list' and '-D, --range-decompress'. The output of option '-l, --list' has been simplified to make it easier to read. In test mode, lziprecover now continues checking the rest of the files if any input file is a terminal. Trailing data are now shown both in hexadecimal and as a string of printable ASCII characters.
24 lines
746 B
Makefile
24 lines
746 B
Makefile
# $NetBSD: Makefile,v 1.8 2017/08/18 20:45:15 adam Exp $
|
|
|
|
DISTNAME= lziprecover-1.19
|
|
CATEGORIES= archivers
|
|
MASTER_SITES= http://download.savannah.gnu.org/releases/lzip/lziprecover/
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://www.nongnu.org/lzip/lziprecover.html
|
|
COMMENT= Recovery tool for lossless data compressor based on the LZMA algorithm
|
|
LICENSE= gnu-gpl-v2 # or later
|
|
|
|
USE_LANGUAGES= c++
|
|
HAS_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --prefix=${PREFIX}
|
|
CONFIGURE_ARGS+= --infodir=${PREFIX}/${PKGINFODIR}
|
|
CONFIGURE_ARGS+= --mandir=${PREFIX}/${PKGMANDIR}
|
|
INFO_FILES= yes
|
|
|
|
MAKE_FLAGS+= CXX=${CXX:Q}
|
|
MAKE_FLAGS+= CPPFLAGS=${CPPFLAGS:Q}
|
|
MAKE_FLAGS+= CXXFLAGS=${CXXFLAGS:Q}
|
|
MAKE_FLAGS+= LDFLAGS=${LDFLAGS:Q}
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|