New comment by motorto on void-packages repository https://github.com/void-linux/void-packages/issues/23692#issuecomment-662047185 Comment: That solved the issue ! Thanks, now I am getting an error: `=> ERROR: pari-gp-2.11.4_1: cannot access wrksrc directory [/builddir/pari]` Well this is turning harder than I tough --------------------------------------------------------------- Well, ###update fixed that error by inspiring myself on bc template, and now the error is compiler option: ``` ld: unrecognized option '-Wl,-z,relro' ld: use the --help option for usage information make[1]: *** [Makefile:1030: gp-dyn] Error 1 make[1]: Leaving directory '/builddir/pari-2.11.4/Olinux-x86_64' make: *** [Makefile:34: install] Error 2 => ERROR: pari-2.11.4_1: do_build: 'make install' exited with 2 => ERROR: in do_build() at srcpkgs/pari/template:26 ``` My template ``` # Template file for 'pari' pkgname=pari version=2.11.4 revision=1 archs="*" 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 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="bfc88fc4f7352f4840e6e352c72f0369cbea8a45403b1834a6269f3709970b1c" disable_parallel_build=yes do_build() { ./Configure make install } do_install() { mv ${DESTDIR}/usr/bin/pari mv ${DESTDIR}/usr/bin/pari mv ${DESTDIR}/usr/share/man/man1/pari.1 mv ${DESTDIR}/usr/share/man/man1/pari.1 } ```