mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-06-09 06:35:19 +02:00
Signed-off-by: Michael Mair-Keimberger <mmk@levelnine.at> Signed-off-by: Fabian Groffen <grobian@gentoo.org>
24 lines
602 B
Bash
24 lines
602 B
Bash
# Copyright 1999-2024 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
DESCRIPTION="Print out an XLS file with minimal formatting, or extract the data into CSV"
|
|
HOMEPAGE="https://wiki.gentoo.org/wiki/No_homepage"
|
|
SRC_URI="https://dev.gentoo.org/~grobian/distfiles/${P}.perl"
|
|
|
|
LICENSE="public-domain"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~x86 ~arm64-macos ~ppc-macos ~x64-macos ~x64-solaris"
|
|
|
|
DEPEND="dev-perl/Spreadsheet-ParseExcel"
|
|
RDEPEND="${DEPEND}"
|
|
|
|
src_unpack() {
|
|
mkdir "${S}" || die
|
|
cp "${DISTDIR}/${P}.perl" "${S}"/${PN} || die
|
|
}
|
|
|
|
src_install() {
|
|
dobin ${PN}
|
|
}
|