e7f5a7bd8a
Zstandard v1.3.8 perf: better decompression speed on large files (+7%) and cold dictionaries (+15%) perf: slightly better compression ratio at high compression modes api : finalized advanced API, last stage before "stable" status api : new --rsyncable mode api : support decompression of empty frames into NULL (used to be an error) build: new set of build macros to generate a minimal size decoder build: fix compilation on MIPS32 build: fix compilation with multiple -arch flags build: highly upgraded meson build build: improved buck support build: fix cmake script : can create debug build build: Makefile : grep works on both colored consoles and systems without color support build: fixed zstd-pgo target cli : support ZSTD_CLEVEL environment variable cli : --no-progress flag, preserving final summary cli : ensure destination file is not source file cli : clearer error messages, notably when input file not present doc : clarified zstd_compression_format.md misc: fixed zstdgrep, returns 1 on failure misc: NEWS renamed as CHANGELOG, in accordance with fb.oss policy
26 lines
769 B
Makefile
26 lines
769 B
Makefile
# $NetBSD: Makefile,v 1.21 2019/01/02 14:27:36 adam Exp $
|
|
|
|
DISTNAME= zstd-1.3.8
|
|
CATEGORIES= archivers
|
|
MASTER_SITES= ${MASTER_SITE_GITHUB:=facebook/}
|
|
GITHUB_TAG= v${PKGVERSION_NOREV}
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://facebook.github.io/zstd/
|
|
COMMENT= Fast real-time compression algorithm
|
|
LICENSE= modified-bsd OR gnu-gpl-v2
|
|
|
|
USE_LANGUAGES= c c++
|
|
USE_TOOLS+= ggrep gmake pkg-config
|
|
PKGCONFIG_OVERRIDE+= lib/libzstd.pc.in
|
|
MAKE_FLAGS= MANDIR=${PREFIX}/${PKGMANDIR}
|
|
MAKE_FLAGS+= mandir=${PREFIX}/${PKGMANDIR}
|
|
MAKE_FLAGS+= INSTALL=${INSTALL:Q}
|
|
|
|
BUILD_TARGET= allmost
|
|
TEST_TARGET= test
|
|
|
|
.include "../../archivers/lz4/buildlink3.mk"
|
|
.include "../../archivers/xz/buildlink3.mk"
|
|
.include "../../devel/zlib/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|