如何在 arch Linux 中编译 Neofetch(来自 git)?

如何在 arch Linux 中编译 Neofetch(来自 git)?

我知道官方 arch 存储库中提供了最新的 Neofetch,但我想从 git 克隆构建它。由于它没有 PKGBUILD,因此 makepkg 是不可能的,并且全局步骤(make install)不会执行任何操作。我读到 Yaourt 使用 makepkg 编译它。但如果没有任何 AUR 助手,如何做到这一点呢?

答案1

你可以获得neofetch git AUR 包, 这就是所谓的neofetch-git。您可以使用 AUR 帮助程序安装它,或者如果您想手动构建:
git clone https://aur.archlinux.org/neofetch-git.git cd neofetch-git makepkg -si

或者,您可以直接从 git 构建:
git clone https://github.com/dylanaraps/neofetch.git cd neofetch make && sudo make install

相关内容