aboutsummaryrefslogtreecommitdiff
blob: 1a78ae08e113ce1c63195b7714ab2c0c3b08ba23 (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
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=7

DESCRIPTION="Combine results from external gene predictors into final gene models"
HOMEPAGE="https://www.cbcb.umd.edu/software/jigsaw"
SRC_URI="https://www.cbcb.umd.edu/software/jigsaw/${P}.tar.gz"

LICENSE="Artistic"
SLOT="0"
KEYWORDS=""

S="${WORKDIR}/${PN}-${PV//m}"

src_compile() {
	cd src/main || die
	emake
	cd ../../lib/oc1
	emake
}

src_install() {
	cd src/main || die
	emake DESTDIR="${ED}" install
	cd ../../lib/oc1
	emake DESTDIR="${ED}" install
}