blob: 6b4ca0b30adb893f3635f63c864ed5f7a02187a7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
DESCRIPTION="Describe, trim, reformat and convert to or form FASTA/FASTQ files"
HOMEPAGE="http://prinseq.sourceforge.net/"
SRC_URI="https://sourceforge.net/projects/prinseq/files/standalone/${P}.tar.gz"
LICENSE="GPL-3+"
SLOT="0"
KEYWORDS=""
IUSE=""
DEPEND=""
RDEPEND="${DEPEND}
virtual/perl-Getopt-Long
virtual/perl-File-Temp
virtual/perl-MIME-Base64
dev-perl/Digest-MD5-File
dev-perl/JSON
dev-perl/Cairo"
# Cwd
# Pod::Usage
# Fcntl qw(:flock SEEK_END)
# List::Util qw(sum min max)
# prinseq-graphs.pl needs in addition
# https://sourceforge.net/projects/prinseq/files/README.txt
# Statistics::PCA
src_install(){
dobin *.pl
dodoc README
}
|