mirror of
https://github.com/gentoo-mirror/guru.git
synced 2025-04-10 12:08:43 -04:00
31 lines
660 B
Bash
31 lines
660 B
Bash
# Copyright 2022 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit cmake vcs-snapshot
|
|
|
|
DESCRIPTION="A runtime SPIR-V assembler"
|
|
HOMEPAGE="https://github.com/ReinUsesLisp/sirit"
|
|
SRC_URI="https://github.com/ReinUsesLisp/sirit/archive/aa292d56650bc28f2b2d75973fab2e61d0136f9c.tar.gz -> ${P}.tar.gz"
|
|
|
|
LICENSE="BSD"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64"
|
|
|
|
DEPEND="dev-util/spirv-headers"
|
|
RDEPEND="${DEPEND}"
|
|
|
|
src_configure() {
|
|
local mycmakeargs=(
|
|
-DSIRIT_USE_SYSTEM_SPIRV_HEADERS=ON
|
|
)
|
|
cmake_src_configure
|
|
}
|
|
|
|
src_install() {
|
|
dodoc LICENSE.txt README.md
|
|
dolib.so "${BUILD_DIR}/src/libsirit.so"
|
|
doheader -r include/sirit
|
|
}
|