summaryrefslogtreecommitdiff
path: root/sys-apps/pick/pick-4.0.0-r1.ebuild
blob: c0a61f4ebb91a704e1ba7d65bc2d6cbb4e660b26 (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
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=8

inherit toolchain-funcs

DESCRIPTION="A fuzzy search tool for the command-line"
HOMEPAGE="https://github.com/mptre/pick"
SRC_URI="https://github.com/mptre/pick/releases/download/v${PV}/${P}.tar.gz"

LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~x86"

RDEPEND="sys-libs/ncurses:0="
DEPEND="${RDEPEND}"
BDEPEND="virtual/pkgconfig"

PATCHES=(
	"${FILESDIR}/${PN}-4.0.0-tinfo.patch"
)

# all these checks are compiled via a homebrew configure script which
# does set -Werror. bug #908573
QA_CONFIG_IMPL_DECL_SKIP+=(
	# "check if _GNU_SOURCE is needed" ???
	wcwidth
	# not available on Linux
	pledge
	# libbsd
	strtonum
)

src_configure() {
	# not autoconf
	tc-export CC
	./configure || die
}

src_install() {
	emake DESTDIR="${ED}" BINDIR=/usr/bin MANDIR=/usr/share/man install
	dodoc CHANGELOG.md
}