mirror of
https://github.com/gentoo-mirror/guru.git
synced 2025-04-10 20:18:41 -04:00
guru version of this commit: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=01ba4dc61965ef7658a24728841c04c9a1ce4871 Closes: https://bugs.gentoo.org/943170 Closes: https://bugs.gentoo.org/943223 Closes: #260 Signed-off-by: Takuya Wakazono <pastalian46@gmail.com>
52 lines
1.2 KiB
Bash
52 lines
1.2 KiB
Bash
# Copyright 2024 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
# Autogenerated by pycargoebuild 0.13.1
|
|
|
|
EAPI=8
|
|
|
|
LLVM_COMPAT=( {18..19} )
|
|
RUST_NEEDS_LLVM=1
|
|
|
|
inherit llvm-r1 cargo
|
|
|
|
DESCRIPTION="A C ABI library which exposes Signal protocol logic"
|
|
HOMEPAGE="https://github.com/signalapp/libsignal"
|
|
SRC_URI="
|
|
https://github.com/signalapp/libsignal/archive/v${PV}.tar.gz -> ${P}.gh.tar.gz
|
|
https://herbizarre.swordarmor.fr/garbage/${P}-vendor.tar.xz
|
|
"
|
|
S="${WORKDIR}/libsignal-${PV}/rust/bridge/ffi"
|
|
|
|
LICENSE="AGPL-3"
|
|
# Dependent crate licenses
|
|
LICENSE+=" AGPL-3 Apache-2.0 BSD-2 BSD ISC MIT Unicode-DFS-2016"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64"
|
|
|
|
BDEPEND="
|
|
dev-libs/protobuf
|
|
$(llvm_gen_dep 'sys-devel/clang:${LLVM_SLOT}')
|
|
"
|
|
|
|
pkg_setup() {
|
|
llvm-r1_pkg_setup
|
|
rust_pkg_setup
|
|
}
|
|
|
|
src_unpack() {
|
|
default
|
|
cargo_gen_config
|
|
ln -s "${WORKDIR}/vendor/" "${WORKDIR}/libsignal-${PV}/vendor" || die
|
|
sed -i "${ECARGO_HOME}/config.toml" \
|
|
-e '/source.crates-io/d' \
|
|
-e '/replace-with = "gentoo"/d' \
|
|
-e '/local-registry = "\/nonexistent"/d' \
|
|
|| die
|
|
cat vendor/vendor-config.toml >> "${ECARGO_HOME}/config.toml" || die
|
|
}
|
|
|
|
src_install() {
|
|
dolib.a "${WORKDIR}/${P/-ffi/}/$(cargo_target_dir)/${PN/-/_}.a"
|
|
}
|