diff options
author | 2022-12-27 01:06:45 +0100 | |
---|---|---|
committer | 2022-12-27 01:06:45 +0100 | |
commit | ec7bfb77b991e596ca13696b7627f49975f8265a (patch) | |
tree | 7bce0ad117a5021c444c203fdb4581e341762994 /sci-biology/samtools/samtools-1.16.1.ebuild | |
parent | sci-libs/htslib: update remote-id (diff) | |
download | gentoo-ec7bfb77b991e596ca13696b7627f49975f8265a.tar.gz gentoo-ec7bfb77b991e596ca13696b7627f49975f8265a.tar.bz2 gentoo-ec7bfb77b991e596ca13696b7627f49975f8265a.zip |
sci-biology/samtools: add 1.16.1
Signed-off-by: David Seifert <soap@gentoo.org>
Diffstat (limited to 'sci-biology/samtools/samtools-1.16.1.ebuild')
-rw-r--r-- | sci-biology/samtools/samtools-1.16.1.ebuild | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/sci-biology/samtools/samtools-1.16.1.ebuild b/sci-biology/samtools/samtools-1.16.1.ebuild new file mode 100644 index 000000000000..8047657df992 --- /dev/null +++ b/sci-biology/samtools/samtools-1.16.1.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="https://github.com/samtools/${PN}/releases/download/${PV}/${P}.tar.bz2" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux ~x64-macos" + +RDEPEND=" + dev-lang/perl + =sci-libs/htslib-$(ver_cut 1-2)*:= + 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 +} |