diff options
author | Eli Schwartz <eschwartz93@gmail.com> | 2024-06-10 23:28:40 -0400 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2024-06-14 07:44:45 +0100 |
commit | e0dd3c64772410c9fa99bf253d1cc5ef75a02458 (patch) | |
tree | fdcab9aea306dc1cc232936df4614e87f139b5af /sys-auth/libyubikey | |
parent | sys-auth/libyubikey: make sure elibtoolize is applied (diff) | |
download | gentoo-e0dd3c64772410c9fa99bf253d1cc5ef75a02458.tar.gz gentoo-e0dd3c64772410c9fa99bf253d1cc5ef75a02458.tar.bz2 gentoo-e0dd3c64772410c9fa99bf253d1cc5ef75a02458.zip |
sys-auth/libyubikey: update EAPI 7 -> 8
Signed-off-by: Eli Schwartz <eschwartz93@gmail.com>
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'sys-auth/libyubikey')
-rw-r--r-- | sys-auth/libyubikey/libyubikey-1.13-r1.ebuild | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/sys-auth/libyubikey/libyubikey-1.13-r1.ebuild b/sys-auth/libyubikey/libyubikey-1.13-r1.ebuild new file mode 100644 index 000000000000..b2ecb6ea9e35 --- /dev/null +++ b/sys-auth/libyubikey/libyubikey-1.13-r1.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit libtool + +DESCRIPTION="Yubico C low-level library" +HOMEPAGE="https://github.com/Yubico/yubico-c" +SRC_URI="http://opensource.yubico.com/yubico-c/releases/${P}.tar.gz" + +LICENSE="BSD-2" +SLOT="0" +KEYWORDS="~amd64 ~arm64 ~ppc64 ~riscv ~x86" + +src_prepare() { + default + elibtoolize +} + +src_install() { + default + + # no static archives + find "${ED}" -name '*.la' -delete || die +} |