How to uninstall software/package which I Installed via PKGBUILD

I just install portmaster on my endeavour os using the given instruction on the given safing website
this was installation instruction via PKGBUILD:

# Clone the repository
git clone https://github.com/safing/portmaster-packaging

# Enter the repo and build/install the package (it's under linux/)
cd portmaster-packaging/linux
makepkg -is

# Start the Portmaster and enable autostart
sudo systemctl daemon-reload
sudo systemctl enable --now portmaster

Now I don’t know how to remove/uninstall the package/software?
Anyone here to help me out?

yay -R <package-name>

You can just uninstall it like any other package

sudo pacman -Rs portmaster
1 Like

Can we use

yay -Rcns <pkgname>

to remove the package along with its added dependencies ?

It says

error: target not found: portmaster
 -> exit status 1

No success!!!

error: target not found: portmaster
yay portmaster | grep installed

Will give you the package name.

Just

yay -Rs 

Would be enough. It removes the package and it’s dependencies

yay -Rcs

Will remove a lot more packages than you want it to

So, in which usage case this command should be used ?

https://wiki.archlinux.org/title/pacman#Removing_packages

1 Like

Thank you, got the concept.

This topic was automatically closed 2 days after the last reply. New replies are no longer allowed.