• puttputt@beehaw.org
    link
    fedilink
    arrow-up
    9
    ·
    edit-2
    16 hours ago

    I think you have the wrong mental model of how the AUR works. You don’t enable it and then it works with pacman (which is what it sounds like you are thinking). Instead, it’s a repository of packages that require a different method of installation. This is described in section 2 of the wiki page you linked:

    1. Acquire the build files, including the PKGBUILD and possibly other required files, like systemd units and patches (often not the actual code).
    2. Verify that the PKGBUILD and accompanying files are not malicious or untrustworthy.
    3. Run makepkg in the directory where the files are saved. This will download the code, compile it, and package it.
    4. Run pacman -U package_file to install the package onto your system.

    More detailed instructions are on that page.

    However, if you want a pacman-like experience, you can install an AUR helper. You’ll still need to install the AUR helper via the steps above, though.

    • Ludrol@szmer.infoOP
      link
      fedilink
      arrow-up
      3
      ·
      edit-2
      16 hours ago

      I was thinking of something similar to apt non-free repositories as I have used debian based distros so far.
      Thank you.