diff options
author | 2021-10-18 13:25:09 +0200 | |
---|---|---|
committer | 2021-10-18 13:25:09 +0200 | |
commit | 4f86aedbcbd2669eb91f62364c7661a384629e11 (patch) | |
tree | 491460c101cb31d6bf310aa024a8675268b5aa23 /sci-biology/longstitch/longstitch-1.0.1.ebuild | |
parent | dev-vcs/datalad: new package (diff) | |
download | sci-4f86aedbcbd2669eb91f62364c7661a384629e11.tar.gz sci-4f86aedbcbd2669eb91f62364c7661a384629e11.tar.bz2 sci-4f86aedbcbd2669eb91f62364c7661a384629e11.zip |
sci-biology/longstitch: new package
A simple Makefile to run all the dependencies at once.
Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Martin Mokrejs <mmokrejs@gmail.com>
Diffstat (limited to 'sci-biology/longstitch/longstitch-1.0.1.ebuild')
-rw-r--r-- | sci-biology/longstitch/longstitch-1.0.1.ebuild | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/sci-biology/longstitch/longstitch-1.0.1.ebuild b/sci-biology/longstitch/longstitch-1.0.1.ebuild new file mode 100644 index 000000000..787c3219b --- /dev/null +++ b/sci-biology/longstitch/longstitch-1.0.1.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DESCRIPTION="Scaffold genome assemblies by Chromium/PacBio/Nanopore reads" +HOMEPAGE="https://github.com/bcgsc/LongStitch" +SRC_URI="https://github.com/bcgsc/LongStitch/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +RESTRICT="test" + +RDEPEND=" + sci-biology/abyss + sci-biology/tigmint + sci-biology/LINKS + sci-biology/samtools +" + +S="${WORKDIR}"/LongStitch-"${PV}" + +src_install(){ + dobin longstitch + dodoc README.md LongStitch_overview.pdf +} |