diff options
-rw-r--r-- | python-scikit-image/PKGBUILD | 50 |
1 files changed, 0 insertions, 50 deletions
diff --git a/python-scikit-image/PKGBUILD b/python-scikit-image/PKGBUILD deleted file mode 100644 index 2c62e5c9c..000000000 --- a/python-scikit-image/PKGBUILD +++ /dev/null @@ -1,50 +0,0 @@ -# Maintainer: Erich Eckner <arch at eckner dot net> -# Contributor: Jaroslav Lichtblau <svetlemodry@archlinux.org> -# Contributor: Andrzej Giniewicz <gginiu@gmail.com> - -pkgname='python-scikit-image' -_pkgname="${pkgname#*-}" -pkgver=0.19.3 -pkgrel=16 -pkgdesc="Image processing routines for SciPy" -arch=('i686' 'pentium4' 'x86_64') -url="http://scikit-image.org/" -license=('BSD') -_pinned_dependencies=( - 'gcc-libs=14.1.1+r58+gfc9fb69ad62' - 'glibc>=2.31' -) -depends=( - "${_pinned_dependencies[@]}" - 'cython>=0.29.13' - 'python>=3.12' - 'python<3.13' - 'python-cloudpickle>=0.2.1' - 'python-dask>=0.15.0' - 'python-pandas>=0.23.0' - 'python-pythran' - 'python-scikit-learn' - 'python-seaborn>=0.7.1' - 'python-wheel') -makedepends=( - 'cython>=0.23') -optdepends=( - 'python-pyqt4: for imshow(x, fancy=True) and skivi' - 'freeimage: for reading various types of image file formats' - 'python-pyamg: fast cg_mg mode of random walker segmentation' -) -options=('!emptydirs') -source=("${_pkgname}-${pkgver}.tar.gz::https://github.com/${_pkgname}/${_pkgname}/archive/v${pkgver}.tar.gz") -sha512sums=('1e62456075de8daaf44a4e86e260ba4f22b17f6636d4154844af5d705232345bdb5165ba777ea0f4db90a61fe58beb27ae9246cbb855cedf82355115214bef4e') - -build() { - cd "${srcdir}/${_pkgname}-${pkgver}" - python setup.py build -} - -package() { - cd "${srcdir}/${_pkgname}-${pkgver}" - - python setup.py install --root="${pkgdir}"/ --optimize=1 - install -D LICENSE.txt "${pkgdir}"/usr/share/licenses/$pkgname/LICENSE -} |