this is the unofficial repo for paraview for void linux
If you want to update paraview along with your distribution packages, just run the following commands once:
$ su
# echo 'repository=https://github.com/muezabdalla/paraview-void/releases/latest/download/' > /etc/xbps.d/30-paraview.conf
# xbps-install -Su paraview
Clone the void-packages repository:
$ git clone https://github.com/void-linux/void-packages
Change to the new void-packages folder and proceed to build the bootstrap:
$ cd void-packages
$ ./xbps-src binary-bootstrap
$ git clone https://github.com/muezabdalla/paraview-void.git
Once you have cloned the repository, copy the contents inside the srcpkgs folder into the void-packages srcpkgs folder.
Once the bootstrap is ready, it's time to build the package with:
$ ./xbps-src pkg <pkgname>
After a while, the above step will create a binary in hostdir/binpkgs named
<pkgname>-<version>_<revision>.<arch>.xbps.
Once the package is successfully built and in the hostdir/binpkgs directory
you can install it with:
# xbps-install -R hostdir/binpkgs <package>
Before compiling Librewolf, it is recommended that you update your environment to ensure you have the latest changes. This involves updating your local void-packages repository and then updating the bootstrap packages.
Update your local void-packages repository to the latest version:
$ git pull origin master
Sometimes, you may need to update the bootstrap packages to the latest version available in the repositories. To do this run:
$ ./xbps-src bootstrap-update
special thanks to index-0(Alfredo Pérez) who I learned from his librewolf repo and I still use it