diff options
author | Michael Mair-Keimberger <mmk@levelnine.at> | 2024-06-10 20:21:37 +0200 |
---|---|---|
committer | Arthur Zamarin <arthurzam@gentoo.org> | 2024-06-13 17:47:33 +0300 |
commit | 9af815a2108fe01e8d7ca172d713eed1e1f773ae (patch) | |
tree | 583f10c43e94bfdea70d6a9b115cb44341f63e66 /app-emulation/libdsk/libdsk-1.5.19.ebuild | |
parent | x11-terms/guake: add 3.10 (diff) | |
download | gentoo-9af815a2108fe01e8d7ca172d713eed1e1f773ae.tar.gz gentoo-9af815a2108fe01e8d7ca172d713eed1e1f773ae.tar.bz2 gentoo-9af815a2108fe01e8d7ca172d713eed1e1f773ae.zip |
app-emulation/libdsk: add 1.5.18
Signed-off-by: Michael Mair-Keimberger <mmk@levelnine.at>
Closes: https://bugs.gentoo.org/928923
Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
Diffstat (limited to 'app-emulation/libdsk/libdsk-1.5.19.ebuild')
-rw-r--r-- | app-emulation/libdsk/libdsk-1.5.19.ebuild | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/app-emulation/libdsk/libdsk-1.5.19.ebuild b/app-emulation/libdsk/libdsk-1.5.19.ebuild new file mode 100644 index 000000000000..ef4ed3761ec5 --- /dev/null +++ b/app-emulation/libdsk/libdsk-1.5.19.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit autotools + +DESCRIPTION="Library for accessing discs and disc image files" +HOMEPAGE="https://www.seasip.info/Unix/LibDsk/" +SRC_URI="https://www.seasip.info/Unix/LibDsk/${P}.tar.gz" + +LICENSE="GPL-2+" +SLOT="0" +KEYWORDS="~amd64" + +DOCS=( doc/${PN}.{txt,pdf} ) + +src_prepare() { + default + eautoreconf +} + +src_install() { + default + find "${ED}" -name '*.la' -delete || die +} |