mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2025-12-08 00:05:33 +03:00
Signed-off-by: Eli Schwartz <eschwartz93@gmail.com> Signed-off-by: Sam James <sam@gentoo.org>
45 lines
904 B
Bash
45 lines
904 B
Bash
# 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
|
|
}
|