Closed issue by motorto on void-packages repository https://github.com/void-linux/void-packages/issues/23692 Description: Source: https://pari.math.u-bordeaux.fr/ License: GPL PARI/GP is a widely used computer algebra system designed for fast computations in number theory EDIT: I started trying to package it myself but I am having some trouble with the checksum , I download the tar.xz and did > tar xf --to-stdout | sha256sum But when running I get an error that it can't configure checksum of distfiles, my package template at the moment looks like this: ``` # Template file for 'pari-gp' pkgname=pari-gp version=2.11.4 revision=1 archs="*" #wrksrc= #create_wrksrc=yes build_style=gnu-configure #configure_args="" #make_build_args="" #make_install_args="" #conf_files="" #make_dirs="/var/log/dir 0755 root root" hostmakedepends="" makedepends="" depends="" short_desc="PARI/GP is a widely used computer algebra system designed for fast computations in number theory" maintainer="André Cerqueira " license="GPL-3.0-or-later" homepage="https://pari.math.u-bordeaux.fr" distfiles="https://pari.math.u-bordeaux.fr/pub/pari/unix/pari-2.11.4.tar.gz" checksum=8f8b4cf6c3af54f74bb3e42929bc195d68563f353bba2a4e6f9c7fc096407a83 ``` Any help is welcomed even if its not a positive one !