mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2025-12-21 21:17:37 -08:00
Bug: https://bugs.gentoo.org/914570 Signed-off-by: Volkmar W. Pogatzki <gentoo@pogatzki.net> Closes: https://github.com/gentoo/gentoo/pull/38110 Signed-off-by: Miroslav Šulc <fordfrog@gentoo.org>
42 lines
756 B
Bash
42 lines
756 B
Bash
# Copyright 2021-2024 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit toolchain-funcs
|
|
|
|
DESCRIPTION="Bitshuffle C library"
|
|
HOMEPAGE="https://github.com/kiyo-masui/bitshuffle"
|
|
SRC_URI="https://github.com/kiyo-masui/bitshuffle/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
|
|
|
|
LICENSE="MIT"
|
|
SLOT="0"
|
|
KEYWORDS="amd64 ~arm arm64 ppc64 x86"
|
|
|
|
DEPEND="
|
|
app-arch/lz4
|
|
"
|
|
|
|
RDEPEND="
|
|
app-arch/lz4
|
|
"
|
|
|
|
src_prepare() {
|
|
cp "${FILESDIR}/${P}-Makefile" "Makefile" || die "Failed to copy Makefile"
|
|
default
|
|
}
|
|
|
|
src_configure() {
|
|
tc-export CC
|
|
export PACKAGE_VERSION="${PV}"
|
|
}
|
|
|
|
src_install() {
|
|
local prefix="${EPREFIX}/usr"
|
|
emake \
|
|
DESTDIR="${D}" \
|
|
PREFIX="${prefix}" \
|
|
LIBDIR="${prefix}/$(get_libdir)" \
|
|
install
|
|
}
|