31 lines
654 B
Bash
31 lines
654 B
Bash
# Copyright 1999-2023 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit autotools
|
|
|
|
DESCRIPTION="A very basic terminfo library"
|
|
HOMEPAGE="https://github.com/neovim/unibilium/"
|
|
SRC_URI="https://github.com/neovim/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
|
|
|
|
LICENSE="LGPL-3+ MIT"
|
|
SLOT="0/4"
|
|
KEYWORDS="amd64 arm arm64 ~ppc64 ~riscv x86 ~x64-macos"
|
|
|
|
BDEPEND="dev-lang/perl"
|
|
|
|
PATCHES=(
|
|
"${FILESDIR}/${PN}-2.1.0-no-compress-man.patch"
|
|
"${FILESDIR}/${P}-libtool.patch" # 828492
|
|
)
|
|
|
|
src_prepare() {
|
|
default
|
|
eautoreconf
|
|
}
|
|
|
|
src_install() {
|
|
emake DESTDIR="${D}" install
|
|
find "${D}" -name '*.la' -delete || die
|
|
}
|