Date: Monday, May 1, 2023 @ 14:32:57
Author: arojas
Revision: 1455585
archrelease: copy trunk to community-testing-x86_64
Added:
jupymake/repos/community-testing-x86_64/
jupymake/repos/community-testing-x86_64/PKGBUILD
(from rev 1455584, jupymake/trunk/PKGBUILD)
----------+
PKGBUILD | 25 +++++++++++++++++++++++++
1 file changed, 25 insertions(+)
Copied: jupymake/repos/community-testing-x86_64/PKGBUILD (from rev 1455584,
jupymake/trunk/PKGBUILD)
===================================================================
--- community-testing-x86_64/PKGBUILD (rev 0)
+++ community-testing-x86_64/PKGBUILD 2023-05-01 14:32:57 UTC (rev 1455585)
@@ -0,0 +1,25 @@
+# Maintainer: Antonio Rojas <[email protected]>
+
+_name=JuPyMake
+pkgbase=jupymake
+pkgname=python-jupymake
+pkgver=0.9
+pkgrel=17
+pkgdesc='A Python interface to Polymake'
+arch=(x86_64)
+url='https://github.com/sebasguts/JuPyMake'
+license=(GPL2)
+depends=(python polymake)
+makedepends=(python-build python-installer python-setuptools python-wheel)
+source=(https://pypi.python.org/packages/source/${_name:0:1}/${_name}/${_name}-${pkgver}.tar.gz)
+sha256sums=('4c756cd6a6056a20cd71f7b5e463c79dad0257241bbd32a40b750882fafdb545')
+
+build() {
+ cd $_name-$pkgver
+ python -m build --wheel --no-isolation
+}
+
+package_python-jupymake() {
+ cd $_name-$pkgver
+ python -m installer --destdir="$pkgdir" dist/*.whl
+}