summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 40dff97c79e5c8b77a46b8b9f6344b7e4d68c1ba (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
# Maintainer: Clint Valentine <valentine.clint@gmail.com>

pkgname='python-gffutils'
pkgver=0.9
pkgrel=1
pkgdesc="GFF and GTF file manipulation and interconversion"
arch=('any')
url="https://github.com/daler/gffutils"
license=('MIT')
depends=(
  'python'
  'python-argcomplete'
  'python-argh'
  'python-pyfaidx'
  'python-simplejson'
  'python-six')
optdepends=(
  'python-biopython: for sequence manipulation'
  'bedtools: for genomic interval arithemtic'
  'python-pybedtools: wrapper for bedtools')
makedepends=('python-setuptools')
ptions=(!emptydirs)
source=("https://github.com/daler/gffutils/archive/v${pkgver}.tar.gz")
md5sums=('819e44d2995175d6b0e575ecf07fc50f')

package() {
  cd "${srcdir}/gffutils-${pkgver}"
  python setup.py install --root="${pkgdir}/" --optimize=1
}