mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-06-06 13:15:19 +02:00
31 lines
632 B
Bash
31 lines
632 B
Bash
# Copyright 2019-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
LLVM_COMPAT=( 18 )
|
|
|
|
inherit cmake llvm-r2
|
|
|
|
MY_COMMIT="0de81efb64acc82c08c5eee4a7108ddcb1b00d86"
|
|
|
|
DESCRIPTION="Clang-based FFI wrapper generator for Common Lisp"
|
|
HOMEPAGE="https://github.com/rpav/c2ffi"
|
|
SRC_URI="https://github.com/rpav/c2ffi/archive/${MY_COMMIT}.tar.gz -> ${P}.tar.gz"
|
|
S="${WORKDIR}/c2ffi-${MY_COMMIT}"
|
|
|
|
LICENSE="LGPL-2.1"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64"
|
|
|
|
DEPEND="
|
|
$(llvm_gen_dep '
|
|
llvm-core/clang:${LLVM_SLOT}=
|
|
llvm-core/llvm:${LLVM_SLOT}=
|
|
')
|
|
"
|
|
RDEPEND="${DEPEND}"
|
|
|
|
pkg_setup() {
|
|
llvm-r2_pkg_setup
|
|
}
|