summaryrefslogtreecommitdiff
path: root/app-arch/ouch/ouch-0.8.2.ebuild
blob: 686159cc5e121c5700943edc0548eb9c6564a89f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
# Copyright 2023-2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=8

CRATES=""

LLVM_COMPAT=( {21..22} )
RUST_NEEDS_LLVM=1
RUST_MIN_VER="1.93.0"

inherit llvm-r1 cargo shell-completion

DESCRIPTION="A cli utility for easily compressing and decompressing files and directories"
HOMEPAGE="https://github.com/ouch-org/ouch"
SRC_URI="https://github.com/ouch-org/${PN}/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
DEPS_URI="https://github.com/gentoo-crate-dist/${PN}/releases/download/${PV}/${P}-crates.tar.xz"
SRC_URI+=" ${DEPS_URI}"

LICENSE="MIT"
# Dependent crate licenses
LICENSE+=" Apache-2.0 BSD MIT Unicode-DFS-2016 ZLIB"
SLOT="0"
KEYWORDS="~amd64"

DEPEND="
	app-arch/bzip2
	app-arch/bzip3
	app-arch/xz-utils
	virtual/zlib:=
"
RDEPEND="${DEPEND}"
BDEPEND="
	$(llvm_gen_dep 'llvm-core/clang:${LLVM_SLOT}=')
"

QA_FLAGS_IGNORED="usr/bin/${PN}"
QA_PRESTRIPPED="usr/bin/${PN}"

src_prepare() {
	default

	# unrar-ng-sys unconditionally adds -stdlib=libc++ which breaks on Linux
	# where libstdc++ is the default C++ standard library. Remove it.
	local build_rs="${ECARGO_VENDOR}/unrar-ng-sys-0.7.7/build.rs"
	if [[ -f "${build_rs}" ]]; then
		sed -i 's/-stdlib=libc++//g' "${build_rs}" || die "Failed to patch unrar-ng-sys build.rs"
	else
		ewarn "Could not find unrar-ng-sys build.rs to patch"
	fi
}

src_compile() {
	local -x OUCH_ARTIFACTS_FOLDER=artifacts
	cargo_src_compile
}

src_install() {
	cargo_src_install

	doman artifacts/*.1

	newbashcomp "artifacts/${PN}.bash" "${PN}"
	dozshcomp "artifacts/_${PN}"
	dofishcomp "artifacts/${PN}.fish"
}