diff options
author | 2022-03-19 12:38:04 +0100 | |
---|---|---|
committer | 2022-03-19 12:38:04 +0100 | |
commit | 57d20d58a279d301722f1940125c7e216249dfd5 (patch) | |
tree | 944154f27d39870dbb3efea7af12a99aba107a34 /sci-biology/samtools/samtools-1.15.ebuild | |
parent | sci-libs/htslib: add 1.15 (diff) | |
download | gentoo-57d20d58a279d301722f1940125c7e216249dfd5.tar.gz gentoo-57d20d58a279d301722f1940125c7e216249dfd5.tar.bz2 gentoo-57d20d58a279d301722f1940125c7e216249dfd5.zip |
sci-biology/samtools: add 1.15
Signed-off-by: David Seifert <soap@gentoo.org>
Diffstat (limited to 'sci-biology/samtools/samtools-1.15.ebuild')
-rw-r--r-- | sci-biology/samtools/samtools-1.15.ebuild | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/sci-biology/samtools/samtools-1.15.ebuild b/sci-biology/samtools/samtools-1.15.ebuild new file mode 100644 index 000000000000..74aee5acaaa2 --- /dev/null +++ b/sci-biology/samtools/samtools-1.15.ebuild @@ -0,0 +1,47 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit toolchain-funcs + +DESCRIPTION="Utilities for analysing and manipulating the SAM/BAM alignment formats" +HOMEPAGE="http://www.htslib.org/" +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux ~x64-macos" + +RDEPEND=" + dev-lang/perl + =sci-libs/htslib-${PV}*:= + sys-libs/ncurses:=[unicode(+)] + sys-libs/zlib" +DEPEND="${RDEPEND}" +BDEPEND="virtual/pkgconfig" + +src_prepare() { + default + + # remove bundled htslib + rm -r htslib-* || die +} + +src_configure() { + econf \ + --with-ncurses \ + --with-htslib=system \ + CURSES_LIB="$($(tc-getPKG_CONFIG) --libs ncursesw || die)" +} + +src_compile() { + emake AR="$(tc-getAR)" +} + +src_install() { + default + + dodoc -r examples + docompress -x /usr/share/doc/${PF}/examples +} |