Initial commit

This commit is contained in:
Tobias Bachmann 2017-10-11 13:10:27 +02:00
commit 5695c80999
2 changed files with 42 additions and 0 deletions

20
.SRCINFO Normal file
View file

@ -0,0 +1,20 @@
pkgbase = fslpy
pkgdesc = The fslpy package is a collection of utilities and data abstractions used by FSLeyes.
pkgver = 1.2.1
pkgrel = 1
url = https://fsl.fmrib.ox.ac.uk/fsl/fslwiki/FSLeyes
arch = any
license = Apache
makedepends = python-six
makedepends = python-numpy
makedepends = python-matplotlib
makedepends = python-deprecation
makedepends = python-nibabel
makedepends = wxpython-phoenix
makedepends = python-indexed-gzip
depends = python
source = fslpy-1.2.1.tar.gz::https://git.fmrib.ox.ac.uk/fsl/fslpy/repository/archive.tar.gz?ref=1.2.1
sha256sums = 9091a4e2d8f5f8de222e591801385d16c3b23c468d000299edd9836b86b72441
pkgname = fslpy

22
PKGBUILD Normal file
View file

@ -0,0 +1,22 @@
# Maintainer: Tobias Bachmann <tobachmann@gmx.de>
pkgname=fslpy
pkgver=1.2.1
pkgrel=1
pkgdesc="The fslpy package is a collection of utilities and data abstractions used by FSLeyes."
arch=('any')
url="https://fsl.fmrib.ox.ac.uk/fsl/fslwiki/FSLeyes"
license=('Apache')
groups=()
depends=('python')
makedepends=('python-six' 'python-numpy' 'python-matplotlib' 'python-deprecation' 'python-nibabel' 'wxpython-phoenix' 'python-indexed-gzip')
optdepends=()
provides=()
conflicts=()
replaces=()
source=($pkgname-$pkgver.tar.gz::https://git.fmrib.ox.ac.uk/fsl/fslpy/repository/archive.tar.gz?ref=$pkgver)
sha256sums=('9091a4e2d8f5f8de222e591801385d16c3b23c468d000299edd9836b86b72441')
package() {
cd "$srcdir/${pkgname#fsleyes-}-$pkgver-"*
python setup.py install --root="$pkgdir/" --optimize=1
}