gentoo/dev-libs/bitshuffle/bitshuffle-0.3.5-r1.ebuild
Volkmar W. Pogatzki d4bba0ecd6
dev-libs/bitshuffle: fix underlinked error
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>
2024-08-29 12:48:37 +02:00

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
}