guru/dev-util/gshards/gshards-0.2.ebuild
Anna (cybertailor) Vyalkova ee16daebb1
dev-util/gshards: update SRC_URI
Snapshots from my cgit instance proved to bee too inconsistent, download
from sr.ht mirror instead.

Closes: https://bugs.gentoo.org/938585
Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo@sysrq.in>
2024-09-07 14:46:12 +05:00

37 lines
757 B
Bash

# Copyright 2022-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit crystal-utils multiprocessing toolchain-funcs
DESCRIPTION="Small helper tools to aid installing Crystal packages in Gentoo"
HOMEPAGE="https://git.sysrq.in/gshards/"
SRC_URI="https://git.sr.ht/~cyber/${PN}/archive/${PV}.tar.gz -> ${P}.srht.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64"
RDEPEND="
dev-libs/boehm-gc
dev-libs/libevent:=
dev-libs/libpcre2:=
dev-libs/libyaml
"
DEPEND="${RDEPEND}"
BDEPEND="${CRYSTAL_DEPS}"
QA_FLAGS_IGNORED='.*'
src_configure() {
tc-export CC
export CRFLAGS="--threads=$(makeopts_jobs) --verbose"
crystal_configure
}
src_install() {
emake PREFIX="${EPREFIX}/usr" DESTDIR="${D}" install
}