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

pkgname='python-sample-sheet'
pkgver=0.1.1
pkgrel=1
pkgdesc="A bioinformatics Illumina Sample Sheet parsing utility"
arch=('any')
url="https://pypi.python.org/pypi/sample_sheet"
license=('MIT')
depends=(
  'python'
  'python-click'
  'python-smart-open'
  'python-tabulate'
  'python-terminaltables'
)
makedepends=('python-setuptools')
optdepends=()
provides=('python-sample-sheet')
conflicts=('python-sample-sheet')
options=(!emptydirs)
source=("https://pypi.python.org/packages/fd/98/fc423199c66c513773a1394828a5e3b599bc4492f79fae087e92f01eb1d5/sample_sheet-0.1.1.tar.gz")
md5sums=('daf3355933d0763223b4e99c2a7bc24d')

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