# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 MY_PN="BioTools" MY_P="${MY_PN}-${PV}" DESCRIPTION="Additional scripts for rosetta" HOMEPAGE="http://www.rosettacommons.org/ http://dylans-biotools.sourceforge.net/" SRC_URI="${MY_P}.tgz" LICENSE="BSD" SLOT="0" KEYWORDS="~amd64 ~x86" DEPEND="" RDEPEND="dev-lang/perl" RESTRICT="fetch" S="${WORKDIR}/${MY_PN}" src_install() { local x for x in $(ls *.pl); do newbin ${x} ${x%.pl} done }