Package Details: python-pyfoam 2023.7-1

Git Clone URL: https://aur.archlinux.org/python-pyfoam.git (read-only, click to copy)
Package Base: python-pyfoam
Description: Python Utilities for OpenFOAM
Upstream URL: http://openfoamwiki.net/index.php/Contrib/PyFoam
Licenses: GPL-2.0-or-later
Submitter: tmb
Maintainer: carlosal1015
Last Packager: carlosal1015
Votes: 1
Popularity: 0.000000
First Submitted: 2021-02-19 04:55 (UTC)
Last Updated: 2025-08-11 05:22 (UTC)

Latest Comments

gpettinello commented on 2024-08-09 08:13 (UTC)

I succeeded in building it with this PKGBUILD

# Maintainer: Tobias Baust <tobias.baust at tutanota dot com>
# Maintainer: Gianluca Pettinello <g_pet at hotmail dot com>
pkgname=python-pyfoam
_name=PyFoam
pkgver=2023.7
pkgrel=1
_pkgname=PyFoam-2023.7-py2.py3-none-any
pkgdesc='support for working with the OpenSource CFD-toolbox [OpenFOAM]'
arch=('any')
url='https://pypi.org/project/PyFoam'
license=('GPL3')
depends=(python)
optdepends=('python-numpy: required by some functions')
makedepends=(python-build python-installer python-wheel)
source=("https://files.pythonhosted.org/packages/e8/04/ab62021ebbc7d25f90f34c998f6c72d9b43f196c832b6f21b2098023596e/${_pkgname}.whl")
md5sums=('SKIP')

package() {
#    cd $_name-$pkgver
    python -m installer --destdir="$pkgdir" *.whl
}