diff --git a/.github/workflows/push.yml b/.github/workflows/push.yml index 2e0d78343..70ff2df97 100644 --- a/.github/workflows/push.yml +++ b/.github/workflows/push.yml @@ -57,4 +57,4 @@ jobs: with: tag: ${{ steps.get_version_fastfetch.outputs.release }} commit: ${{ github.sha }} - artifacts: ./fastfetch,./fastfetch-*.* + artifacts: ./fastfetch-*.* diff --git a/CMakeLists.txt b/CMakeLists.txt index 004abcbe9..b466bb79f 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,7 +1,7 @@ cmake_minimum_required(VERSION 3.1.0) # Threads::Threads project(fastfetch - VERSION 1.2.0 + VERSION 1.2.1 LANGUAGES C ) @@ -337,6 +337,7 @@ set(CPACK_PACKAGE_HOMEPAGE_URL "https://github.com/LinusDierheimer") set(CPACK_DEBIAN_PACKAGE_SECTION, "utils") set(CPACK_DEBIAN_PACKAGE_PRIORITY "optional") +set(CPACK_DEBIAN_PACKAGE_DEPENDS "libc6") set(CPACK_DEBIAN_PACKAGE_RECOMMENDS " libpci3 libvulkan1 diff --git a/README.md b/README.md index 7b2867bf4..d9bfe69ba 100644 --- a/README.md +++ b/README.md @@ -86,7 +86,7 @@ If pkg-config fails to find the headers for a library listed in [dependencies](# * [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: Run [`packaging/deb/create.sh`](packaging/deb/create.sh) from the root directory. You can give a custom build directory as an argument. +* 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`