Gentoo Archives: gentoo-commits

From: Martin Mokrejs <mmokrejs@×××××××××××××××.cz>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/sci:master commit in: sci-biology/bamql/
Date: Tue, 01 May 2018 05:55:45
Message-Id: 1525154121.35f7bda074493d740f250c2b434f66636082272d.mmokrejs@gentoo
1 commit: 35f7bda074493d740f250c2b434f66636082272d
2 Author: Martin Mokrejs <mmokrejs <AT> fold <DOT> natur <DOT> cuni <DOT> cz>
3 AuthorDate: Tue May 1 05:55:21 2018 +0000
4 Commit: Martin Mokrejs <mmokrejs <AT> fold <DOT> natur <DOT> cuni <DOT> cz>
5 CommitDate: Tue May 1 05:55:21 2018 +0000
6 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=35f7bda0
7
8 sci-biology/bamql: add live ebuild
9
10 Package-Manager: Portage-2.3.31, Repoman-2.3.9
11
12 sci-biology/bamql/bamql-9999.ebuild | 28 ++++++++++++++++++++++++++++
13 1 file changed, 28 insertions(+)
14
15 diff --git a/sci-biology/bamql/bamql-9999.ebuild b/sci-biology/bamql/bamql-9999.ebuild
16 new file mode 100644
17 index 000000000..44a7d85f5
18 --- /dev/null
19 +++ b/sci-biology/bamql/bamql-9999.ebuild
20 @@ -0,0 +1,28 @@
21 +# Copyright 1999-2018 Gentoo Foundation
22 +# Distributed under the terms of the GNU General Public License v2
23 +
24 +EAPI=6
25 +
26 +inherit autotools git-r3
27 +
28 +DESCRIPTION="Extract reads from BAM files"
29 +HOMEPAGE="https://github.com/BoutrosLaboratory/bamql
30 + https://bmcbioinformatics.biomedcentral.com/articles/10.1186/s12859-016-1162-y"
31 +EGIT_REPO_URI="https://github.com/BoutrosLaboratory/bamql.git"
32 +
33 +LICENSE="MIT"
34 +SLOT="0"
35 +KEYWORDS=""
36 +IUSE=""
37 +
38 +DEPEND="
39 + sys-devel/llvm:=
40 + sys-apps/util-linux
41 + sci-libs/htslib
42 + dev-libs/libpcre"
43 +RDEPEND="${DEPEND}"
44 +
45 +src_prepare(){
46 + eautoreconf
47 + default
48 +}