New comment by damianoognissanti on void-packages repository https://github.com/void-linux/void-packages/pull/43906#issuecomment-1560669602 Comment: Something like this (but please make any changes you want, and please do change the `maintainer` line, I just added something to that it wasn't empty) ``` # Template file for 'julia-bin' pkgname=julia-bin version=1.9.0 revision=1 only_for_archs="x86_64" short_desc="High-level, high-performance dynamic language for technical computing" maintainer="Damiano Ognissanti " hostmakedepends="tar gzip" license="MIT License" homepage="https://julialang.org/" if [ "$XBPS_TARGET_LIBC" = "musl" ] then distfiles="https://julialang-s3.julialang.org/bin/musl/x64/${version:0:3}/julia-${version}-musl-x86_64.tar.gz" else distfiles="https://julialang-s3.julialang.org/bin/linux/x64/${version:0:3}/julia-${version}-linux-x86_64.tar.gz" fi checksum=00c614466ef9809c2eb23480e38d196a2c577fff2730c4f83d135b913d473359 nostrip=yes do_install() { mkdir -p ${DESTDIR}/opt/ mkdir -p ${DESTDIR}/usr/bin/ tar xf ${XBPS_SRCDISTDIR}/${pkgname}-${version}/julia-${version}-linux-x86_64.tar.gz -C ${DESTDIR}/opt/ ln -s /opt/julia-${version}/bin/julia ${DESTDIR}/usr/bin/julia } ```