You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This update is a quality of life update focusing on important bug fixes and adding requested features. Users can update from Pacstall 3.0.0 or higher with pacstall -U pacstall master, or reinstall using the deb file.
If you want to allow installation on certain architectures, you can set the arch array to any architecture supported by dpkg --print-architecture:
arch=('amd64') # Will work **only** on `amd64` platforms
arch=('arm64') # Will work **only** on `arm64` platforms
arch=('amd64') # Will work **only** on `amd64` platforms
arch=('amd64''arm64') # Will work **only** on `amd64` *and* `arm64` platforms
If you want to allow installation on any architecture, then don't include arch, or specify arch=('all') to be explicit. The variable CARCH is now available to Pacscripts to use, for instance if there are different downloads for different architectures:
...
case"${CARCH}"in
amd64)
url="https://foo.com/x86_64/fizzbuzz.tar.gz"
sha256sum="..."
;;
arm64)
url="https://foo.com/arm64/fizzbuzz.tar.gz"
sha256sum="..."
;;
*)
echo -e "This pacscript does not work on ${CARCH}"exit 1
;;
esac
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Pacstall v3.6.0 Arctic
This update is a quality of life update focusing on important bug fixes and adding requested features. Users can update from Pacstall 3.0.0 or higher with
pacstall -U pacstall master
, or reinstall using the deb file.Developers, Developers, Developers...
Features
arch
array by @henryws (feat(pacscript): addarch
array (#793) #793)Bug fixes
pkgver
when checkingcompare_remote_version
by @henryws (fix(compare_remote_version): unsetpkgver
before checks #796)Performance changes
tr
by @henryws (perf(search): use native find replace #794)How to use new features
arch
arrayIf you want to allow installation on certain architectures, you can set the
arch
array to any architecture supported bydpkg --print-architecture
:If you want to allow installation on any architecture, then don't include
arch
, or specifyarch=('all')
to be explicit. The variableCARCH
is now available to Pacscripts to use, for instance if there are different downloads for different architectures:Pacscript for this releases Deb
This discussion was created from the release 3.6.0 Arctic.
Beta Was this translation helpful? Give feedback.
All reactions