gentoo-ebuilds/app-misc/sdate/sdate-0.7.ebuild
Ulrich Müller 7204c6ca1d
app-misc/sdate: Fix *.la removal
Closes: https://bugs.gentoo.org/913566
Signed-off-by: Ulrich Müller <ulm@gentoo.org>
2023-09-03 15:04:53 +02:00

24 lines
454 B
Bash

# Copyright 2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit autotools
DESCRIPTION="Never ending September date"
HOMEPAGE="https://www.df7cb.de/projects/sdate/"
SRC_URI="https://github.com/df7cb/sdate/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-2+"
SLOT="0"
KEYWORDS="~amd64"
src_prepare() {
default
eautoreconf
}
src_install() {
default
rm -f "${ED}"/usr/lib*/*.la || die
}