mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-10 15:45:15 -04:00
38 lines
711 B
Bash
38 lines
711 B
Bash
# Copyright 2022-2026 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=9
|
|
|
|
inherit crystal-utils 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/libpcre2:=
|
|
dev-libs/libyaml
|
|
"
|
|
DEPEND="${RDEPEND}
|
|
${CRYSTAL_DEPS}
|
|
"
|
|
BDEPEND="${CRYSTAL_DEPS}"
|
|
|
|
QA_FLAGS_IGNORED='.*'
|
|
|
|
src_configure() {
|
|
tc-export CC
|
|
export CRFLAGS="--verbose"
|
|
|
|
crystal_configure
|
|
}
|
|
|
|
src_install() {
|
|
emake PREFIX="${EPREFIX}/usr" DESTDIR="${D}" install
|
|
}
|