diff options
author | Michał Górny <mgorny@gentoo.org> | 2024-07-22 08:55:36 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2024-07-22 09:33:47 +0200 |
commit | 0096c3197d4b6a61e115e6ef97d41c471e57afdb (patch) | |
tree | 1232751b80d6a05665011f7e38656c6f30cb1fa3 /app-arch | |
parent | x11-plugins/wmclockmon: add 1.0.0 (diff) | |
download | gentoo-0096c3197d4b6a61e115e6ef97d41c471e57afdb.tar.gz gentoo-0096c3197d4b6a61e115e6ef97d41c471e57afdb.tar.bz2 gentoo-0096c3197d4b6a61e115e6ef97d41c471e57afdb.zip |
app-arch/lz4: Bump to 1.10.0
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'app-arch')
-rw-r--r-- | app-arch/lz4/Manifest | 1 | ||||
-rw-r--r-- | app-arch/lz4/lz4-1.10.0.ebuild | 25 |
2 files changed, 26 insertions, 0 deletions
diff --git a/app-arch/lz4/Manifest b/app-arch/lz4/Manifest index dfd1e824e657..91e1cb9c3f1c 100644 --- a/app-arch/lz4/Manifest +++ b/app-arch/lz4/Manifest @@ -1 +1,2 @@ +DIST lz4-1.10.0.tar.gz 387114 BLAKE2B c87a939b748b0449e4f1869579ebc109704aa89e8699b6029217f6786c351d1b0329580dd3a955fe509efb113f29aecbafc83084d65d153f5d43610f4840a819 SHA512 8c4ceb217e6dc8e7e0beba99adc736aca8963867bcf9f970d621978ba11ce92855912f8b66138037a1d2ae171e8e17beb7be99281fea840106aa60373c455b28 DIST lz4-1.9.4.tar.gz 354063 BLAKE2B 2289cdce36acd35283bf2f02ef4d6d8f4805563be6d5a3492f3d6ea7975fb6bd14e1ac2e505df9747776edf8bcf0da7ba4ae7084b150e3ec08a52a9885f92ad5 SHA512 043a9acb2417624019d73db140d83b80f1d7c43a6fd5be839193d68df8fd0b3f610d7ed4d628c2a9184f7cde9a0fd1ba9d075d8251298e3eb4b3a77f52736684 diff --git a/app-arch/lz4/lz4-1.10.0.ebuild b/app-arch/lz4/lz4-1.10.0.ebuild new file mode 100644 index 000000000000..325d4225f601 --- /dev/null +++ b/app-arch/lz4/lz4-1.10.0.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit cmake-multilib + +DESCRIPTION="Extremely Fast Compression algorithm" +HOMEPAGE="https://github.com/lz4/lz4" +SRC_URI="https://github.com/lz4/lz4/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="BSD-2 GPL-2" +SLOT="0/1.10.0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos ~x64-macos ~x64-solaris" +IUSE="static-libs" + +CMAKE_USE_DIR=${S}/build/cmake + +multilib_src_configure() { + local mycmakeargs=( + -DBUILD_STATIC_LIBS=$(usex static-libs) + ) + + cmake_src_configure +} |