Date: Friday, January 20, 2023 @ 19:21:27
Author: arojas
Revision: 1387150
archrelease: copy trunk to community-x86_64
Added:
python-pyscipopt/repos/
python-pyscipopt/repos/community-x86_64/
python-pyscipopt/repos/community-x86_64/PKGBUILD
(from rev 1387149, python-pyscipopt/trunk/PKGBUILD)
----------+
PKGBUILD | 24 ++++++++++++++++++++++++
1 file changed, 24 insertions(+)
Copied: python-pyscipopt/repos/community-x86_64/PKGBUILD (from rev 1387149,
python-pyscipopt/trunk/PKGBUILD)
===================================================================
--- repos/community-x86_64/PKGBUILD (rev 0)
+++ repos/community-x86_64/PKGBUILD 2023-01-20 19:21:27 UTC (rev 1387150)
@@ -0,0 +1,24 @@
+# Maintainer: Antonio Rojas <[email protected]>
+# Contributor: Maximilian Stahlberg <maximilian.stahlberg tu-berlin de>
+
+pkgname=python-pyscipopt
+pkgver=4.2.0
+pkgrel=1
+pkgdesc='A Python interface to the SCIP Optimization Suite'
+arch=(x86_64)
+url='https://www.scipopt.org/'
+license=(MIT)
+depends=(python scip)
+makedepends=(cython python-build python-installer python-setuptools
python-wheel)
+source=(https://github.com/SCIP-Interfaces/PySCIPOpt/archive/v$pkgver/$pkgname-$pkgver.tar.gz)
+sha256sums=('23cde84811cc2795c23c2b61ef506d737b972a17e72fac1db7bfabb7e296faeb')
+
+build() {
+ cd PySCIPOpt-$pkgver
+ python -m build --wheel --no-isolation
+}
+
+package() {
+ cd PySCIPOpt-$pkgver
+ python -m installer --destdir="$pkgdir" dist/*.whl
+}