summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 5c0c53a318283bfde280a78672a3b8444f759870 (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
36
37
38
39
40
41
# Maintainer: Luis Martinez <luis dot martinez at disroot dot org>
# Contributor: Clint Valentine <valentine.clint@gmail.com>

pkgname=python-gffutils
pkgver=0.10.1
pkgrel=1
pkgdesc="GFF and GTF file manipulation and interconversion in Python"
arch=('any')
url="https://github.com/daler/gffutils"
license=('MIT')
depends=(
	'python-argcomplete'
	'python-argh'
	'python-pyfaidx'
	'python-simplejson'
	'python-six')
optdepends=(
	'bedtools: for genomic interval arithemtic'
	'python-biopython: for sequence manipulation'
	'python-pybedtools: wrapper for bedtools')
makedepends=('python-setuptools')
source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz"
        '001-setup.py.patch')
sha256sums=('c020f38d572a38227d575ca6b4a6781e10317c4231c7008f533bb6d9167f64d8'
            '8b8b8e89a6cf1cd74f73f5e5a67053a24bcc681182bc20c30716818fe9243c58')

prepare() {
	patch -p1 -d "gffutils-$pkgver" < 001-setup.py.patch
	sed -i "s/@PKGVER@/$pkgver/" "gffutils-$pkgver/setup.py"
}

build(){
	cd "gffutils-$pkgver"
	python setup.py build
}

package() {
	cd "gffutils-$pkgver"
	PYTHONHASHSEED=0 python setup.py install --root="$pkgdir/" --optimize=1 --skip-build
	install -Dm644 LICENSE -t "$pkgdir/usr/share/licenses/$pkgname/"
}