blob: b07fb04be9307736feb7972141f0bb882859decf (
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
|
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=5
MY_P="GRAPPA20"
DESCRIPTION="Genome Rearrangements Analysis under Parsimony and other Phylogenetic Algorithms"
HOMEPAGE="http://www.cs.unm.edu/~moret/GRAPPA/"
SRC_URI="http://www.cs.unm.edu/~moret/GRAPPA/${MY_P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
S="${WORKDIR}/${MY_P}"
src_prepare() {
sed -i -e '/CFLAGS := -mcpu/ d' -e 's/\(CFLAGS := -D${OS}\)/\1 ${CFLAGS}/' "${S}/Makefile" || die
}
src_install() {
dobin grappa
dosym grappa /usr/bin/invdist
# avoid file collision with emboss and rename distmat to distmat_grappa
dosym grappa /usr/bin/distmat_grappa
dodoc README
}
|