blob: b28d0ace9e978ee2ee87a01708bd7f0b37456b1d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=5
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"
IUSE=""
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
}
|