# Copyright 1999-2025 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI="8" inherit autotools DESCRIPTION="OAI-PMH harvester built in shell" HOMEPAGE="https://github.com/wimmuskee/shell-oaiharvester" SRC_URI="https://github.com/wimmuskee/${PN}/archive/${PV}.tar.gz -> ${P}.gh.tar.gz" LICENSE="GPL-3" SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="test validation" RESTRICT="mirror !test? ( test )" RDEPEND=" app-shells/bash:* dev-libs/libxslt net-misc/curl sys-apps/grep sys-apps/sed validation? ( dev-libs/libxml2 ) " DEPEND="sys-apps/help2man test? ( ${RDEPEND} )" src_prepare() { default eautoreconf } src_test() { ./test.sh || die "Test failed" }