From f6c7ee447dceafd04486c53a5d905fd831a9a17b Mon Sep 17 00:00:00 2001 From: Juan RP Date: Mon, 17 Jun 2019 06:04:52 +0200 Subject: [PATCH] libarchive: enable lz4 and zstd build options. There's no reason to have them disabled by default. --- srcpkgs/libarchive/template | 8 ++++---- srcpkgs/lz4/template | 1 + srcpkgs/zstd/template | 1 + 3 files changed, 6 insertions(+), 4 deletions(-) diff --git a/srcpkgs/libarchive/template b/srcpkgs/libarchive/template index c35681f977e..915e3b9d8f2 100644 --- a/srcpkgs/libarchive/template +++ b/srcpkgs/libarchive/template @@ -1,7 +1,7 @@ # Template file for 'libarchive' pkgname=libarchive version=3.3.3 -revision=4 +revision=5 bootstrap=yes build_style=gnu-configure configure_args="$(vopt_enable acl) $(vopt_enable acl xattr) @@ -9,7 +9,7 @@ configure_args="$(vopt_enable acl) $(vopt_enable acl xattr) $(vopt_with ssl openssl) $(vopt_with zstd) --without-xml2 --without-nettle --disable-rpath ac_cv_func_lchmod=no" makedepends="zlib-devel bzip2-devel liblzma-devel - $(vopt_if acl acl-devel) $(vopt_if expat expat-devel) $(vopt_if zstd zstd-devel) + $(vopt_if acl acl-devel) $(vopt_if expat expat-devel) $(vopt_if zstd libzstd-devel) $(vopt_if lzo lzo-devel) $(vopt_if lz4 liblz4-devel) $(vopt_if ssl libressl-devel)" short_desc="Library to read/write several different streaming archive formats" maintainer="Juan RP " @@ -20,8 +20,8 @@ checksum=ba7eb1781c9fbbae178c4c6bad1c6eb08edab9a1496c64833d1715d022b30e2e # Package build options build_options="acl expat lzo lz4 ssl zstd" -# Enable acl and ssl by default. -build_options_default="acl ssl" +# Enable acl, ssl, lz4 and zstd by default. +build_options_default="acl ssl lz4 zstd" if [ "$CHROOT_READY" ]; then hostmakedepends="automake libtool pkg-config" diff --git a/srcpkgs/lz4/template b/srcpkgs/lz4/template index d38fdb5a566..4507dca85be 100644 --- a/srcpkgs/lz4/template +++ b/srcpkgs/lz4/template @@ -3,6 +3,7 @@ pkgname=lz4 reverts="131_1 130_1 129_1 128_1 127_1 126_1 125_1 124_1 123_1 122_1" version=1.9.1 revision=1 +bootstrap=yes build_style=gnu-makefile make_check_target=test short_desc="LZ4 compression utilities" diff --git a/srcpkgs/zstd/template b/srcpkgs/zstd/template index 2f2e9057576..f2e758f6e63 100644 --- a/srcpkgs/zstd/template +++ b/srcpkgs/zstd/template @@ -2,6 +2,7 @@ pkgname=zstd version=1.4.0 revision=1 +bootstrap=yes makedepends="zlib-devel liblzma-devel liblz4-devel" checkdepends="gtest-devel" short_desc="Fast real-time compression algorithm - CLI tool"