diff options
Diffstat (limited to 'sci-biology/MaSuRCA/MaSuRCA-3.2.2.ebuild')
-rw-r--r-- | sci-biology/MaSuRCA/MaSuRCA-3.2.2.ebuild | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/sci-biology/MaSuRCA/MaSuRCA-3.2.2.ebuild b/sci-biology/MaSuRCA/MaSuRCA-3.2.2.ebuild new file mode 100644 index 000000000..d9e667792 --- /dev/null +++ b/sci-biology/MaSuRCA/MaSuRCA-3.2.2.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +DESCRIPTION="de Bruijn and OLC assembler for Sanger, Roche 454, Illumina, Pacbio, Nanopore" +HOMEPAGE="http://www.genome.umd.edu/masurca.html" +SRC_URI="${P}.tar.gz + ftp://ftp.genome.umd.edu/pub/MaSuRCA/MaSuRCA_QuickStartGuide.pdf" + +LICENSE="BSD GPL-2 GPL-3" +SLOT="0" +KEYWORDS="" +IUSE="" + +DEPEND=">=dev-lang/perl-5.8 + app-arch/bzip2" +RDEPEND="${DEPEND}" + +RESTRICT="fetch" + +# the ebuild mimics "${S}"/install.sh +src_configure(){ + ./install.sh || die +} + +src_compile(){ + ./install.sh || die +} + +src_install(){ + dobin masurca + dodoc sr_config_example.txt +} |