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 4.0.0 or higher with pacstall -U pacstall:master, or reinstall using the deb file.
mask is an array that takes in pacstall package names. Once installed, any packages in mask will be unable to be installed, or show up in searches. Use this feature sparingly, and do not use it unless you know exactly what you are doing.
Pacscript for this releases Deb
name="pacstall"
pkgver="4.1.0"
pkgdesc="An AUR-inspired package manager for UbuntuPacstall is the AUR Ubuntu wishes it had. It takes the concept of the AURand puts a spin on it, making it easier to install programs without scouringgithub repos and the likes"
homepage='https://pacstall.dev'
depends=("bash""curl""wget""unzip""build-essential""sensible-utils""git")
optdepends=(
"axel: faster file downloads"
)
maintainer="Pacstall Team <pacstall@pm.me>"
url="https://github.com/pacstall/pacstall/archive/refs/tags/${pkgver}.zip"prepare() {
sudo mkdir -p "${pkgdir}/usr/bin/"
sudo mkdir -p "${pkgdir}/usr/share/pacstall/scripts/"
sudo mkdir -p "${pkgdir}/usr/share/pacstall/repo/"
sudo mkdir -p "${pkgdir}/usr/share/man/man8/"
sudo mkdir -p "${pkgdir}/var/log/pacstall/error_log/"
}
package() {
sudo install -Dm 755 pacstall "${pkgdir}/usr/bin/"
sudo install -C "misc/scripts"/*"${pkgdir}/usr/share/pacstall/scripts/"
sudo install "misc/pacstall.8.gz""${pkgdir}/usr/share/man/man8/"echo"https://raw.githubusercontent.com/pacstall/pacstall-programs/master"| sudo tee "${pkgdir}/usr/share/pacstall/repo/pacstallrepo">/dev/null
sudo chmod +x "${pkgdir}/usr/share/pacstall/scripts"/*
}
This discussion was created from the release 4.1.0 Purpure.
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 v4.1.0 Purpure
This update is a quality of life update focusing on important bug fixes and adding requested features. Users can update from Pacstall 4.0.0 or higher with
pacstall -U pacstall:master
, or reinstall using the deb file.Developers, Developers, Developers...
Features
mask
array by @Elsie19 (feat(pacscript): addmask
array #961)Changes
makedepends
through pacstall, reported by @markob94, by @Elsie19 (fix(install): makedepends are too fragile to just remove #964)Additions
Build-Depends
in deb by @Elsie19 (fix(makedeb): logBuild-Depends
#963)How to use features
mask
mask
is an array that takes in pacstall package names. Once installed, any packages inmask
will be unable to be installed, or show up in searches. Use this feature sparingly, and do not use it unless you know exactly what you are doing.Pacscript for this releases Deb
This discussion was created from the release 4.1.0 Purpure.
Beta Was this translation helpful? Give feedback.
All reactions