summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 6892e86dd9c8a3de6f7de75f80cfe512c3a2d3c3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# Maintainer: Tomasz Zok <tomasz dot zok (at) gmail dot com>
pkgname=python-highs-git
_name=highs
pkgver=1.5.3
pkgrel=1
pkgdesc="A Python thin wrapper around HiGHS solver: linear optimization software"
url=https://github.com/ergo-code/highs
license=(MIT)
arch=(x86_64)
depends=(python python-numpy)
makedepends=(python-pip)
source=(git+https://github.com/ergo-code/highs)
sha256sums=(SKIP)

package() {
    cd "${srcdir}/${_name}"
    PIP_CONFIG_FILE=/dev/null pip install --isolated --root="${pkgdir}" --ignore-installed --no-deps .
}