Makepkg without dependencies in archlinux

How to use 'makepkg' on Arch Linux to install AUR without installing any dependencies? Or any AUR helper that could do this?

Somehow similar to pacman (packages):

pacman -Sdd sompackage

      

+3


source to share


1 answer


You may be looking for an option -d

for makepkg.

-d, --nodeps Do not perform any dependency checks. This will allow you to override and ignore any required dependencies. This is a good chance the option will break the build process if all dependencies are not installed.



If you are using Yaourt you can use an option -d

, it will be passed to makepkg.

+3


source







All Articles