You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/dev-libs/bitshuffle/bitshuffle-0.3.5.ebuild

38 lines
733 B

# Copyright 2021-2022 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
"
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
}