# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 inherit git-r3 DESCRIPTION="Parallell process SAM/BAM/CRAM files faster than samtools" HOMEPAGE="https://lomereiter.github.io/sambamba/" EGIT_REPO_URI="https://github.com/lomereiter/sambamba.git" LICENSE="GPL-2+" SLOT="0" KEYWORDS="" IUSE="debug" DEPEND="" RDEPEND="${DEPEND}" # https://github.com/ldc-developers/gentoo-overlay/tree/master/dev-lang/ldc2 src_compile(){ if use debug ; then emake debug all else emake all fi }