summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: c5e9773587c2bb83382b6bae04a5de5e06fe678d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# Contributor: Patrick Mischke

pkgname='python-mkl'
pkgver=2025.0.1
pkgrel=1
pkgdesc="IntelĀ® oneAPI Math Kernel Library"
url="https://www.intel.com/content/www/us/en/developer/tools/oneapi/onemkl.html"
depends=('intel-oneapi-mkl' 'python')
makedepends=('python-pip')
license=('custom:IntelSimplifiedSoftwareLicense')
arch=('x86_64')
source=("https://files.pythonhosted.org/packages/bd/d7/a86e897657596eaadc0f76b1dcde823451cdc4877fc39a8211a47f862202/mkl-2025.0.1-py2.py3-none-manylinux_2_28_x86_64.whl" "LICENSE.txt")

sha256sums=("581b3de496bd004ab2d2bd38775bbcc885303270687940848a19747cce45d47b" "ea02a6819db8514ff50fbfcaa94cd771be38e7bf42ef96de49c091c6d31b449e")

package() {
  install -Dm644 "$srcdir/LICENSE.txt" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
  PIP_CONFIG_FILE=/dev/null pip install --isolated --root="$pkgdir" --ignore-installed --no-deps mkl-2025.0.1-py2.py3-none-manylinux_2_28_x86_64.whl
}