From 8577be3d6d62e8d93ec81159b32e0c0cb6b9a727 Mon Sep 17 00:00:00 2001 From: Linus Dierheimer Date: Wed, 8 Jun 2022 12:07:06 +0200 Subject: [PATCH] Update packaging section in README --- README.md | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index c76ea359d..ccd54b494 100644 --- a/README.md +++ b/README.md @@ -85,20 +85,21 @@ fastfetch uses [`cmake`](https://cmake.org/) and [`pkg-config`](https://www.free mkdir -p build cd build cmake .. -cmake --build . -j$(nproc) --target fastfetch --target flashfetch +cmake --build . --target fastfetch --target flashfetch ``` If pkg-config fails to find the headers for a library listed in [dependencies](#dependencies), fastfetch will simply build without support for that specific feature. This means, it won't look for it at runtime and just act like it isn't available. ## Packaging -* [AUR](https://aur.archlinux.org/packages/fastfetch-git/): Packaged by me. Will install the fastfetch binary, bash completion and the presets. Git version -* [Manjaro Repositories](https://gitlab.manjaro.org/packages/community/fastfetch): Packaged by a manjaro maintainer. Usually a bit outdated. -* [Gentoo (Guru)](https://github.com/gentoo/guru/tree/master/app-misc/fastfetch): Packed by some other guy. May be out of date some times. -* DEB / RPM: Run `cmake -B build && cmake --build build --target package` to build the packages in build. -* Manually: - * Build: Follow the [build instructions](#building). - * Install: `sudo cmake --install build --prefix /usr/local` +[![Packaging status](https://repology.org/badge/vertical-allrepos/fastfetch.svg)](https://repology.org/project/fastfetch/versions) + +### Manual + +Build: Follow the [build instructions](#building). + +* Create DEB / RPM: Run `cmake --build . --target package`. +* Install directly: Run `sudo cmake --install . --prefix /usr/local` ## FAQ