Skip to content

Commit 52eed51

Browse files
Fix prebuild deb package
1 parent e5237c1 commit 52eed51

File tree

2 files changed

+19
-19
lines changed

2 files changed

+19
-19
lines changed

CMakeLists.txt

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
cmake_minimum_required(VERSION 3.1.0) # Threads::Threads
22

33
project(fastfetch
4-
VERSION 1.3.1
4+
VERSION 1.3.2
55
LANGUAGES C
66
)
77

@@ -420,29 +420,29 @@ set(CPACK_GENERATOR "DEB;RPM;TGZ;ZIP")
420420

421421
set(CPACK_PACKAGE_CONTACT "Linus Dierheimer <[email protected]>")
422422
set(CPACK_PACKAGE_DESCRIPTION_SUMMARY "Neofetch clone written in C")
423-
set(CPACK_PACKAGE_DESCRIPTION "
424-
fastfetch is a neofetch-like tool for fetching system information and displaying them in a pretty way.
425-
It is written in c to achieve much better performance.
423+
set(CPACK_PACKAGE_DESCRIPTION "\
424+
fastfetch is a neofetch-like tool for fetching system information and displaying them in a pretty way. \
425+
It is written in c to achieve much better performance.\
426426
")
427427
set(CPACK_PACKAGE_HOMEPAGE_URL "https://github.com/LinusDierheimer")
428428

429429
set(CPACK_DEBIAN_PACKAGE_SECTION, "utils")
430430
set(CPACK_DEBIAN_PACKAGE_PRIORITY "optional")
431431
set(CPACK_DEBIAN_PACKAGE_DEPENDS "libc6")
432-
set(CPACK_DEBIAN_PACKAGE_RECOMMENDS "
433-
libpci3
434-
libvulkan1
435-
libwayland-client0
436-
libxcb-randr0
437-
xcb
438-
libxrandr2
439-
libx11-6
440-
libdconf1
441-
libglib2.0-0
442-
libdbus-1-3
443-
libxfconf-0-3
444-
libmagickcore-6.q16hdri-6
445-
libmagickcore-6.q16-6
432+
set(CPACK_DEBIAN_PACKAGE_RECOMMENDS "\
433+
libpci3, \
434+
libvulkan1, \
435+
libwayland-client0, \
436+
libxcb-randr0, \
437+
xcb, \
438+
libxrandr2, \
439+
libx11-6, \
440+
libdconf1, \
441+
libglib2.0-0, \
442+
libdbus-1-3, \
443+
libxfconf-0-3, \
444+
libmagickcore-6.q16hdri-6, \
445+
zlib1g, \
446446
")
447447

448448
set(CPACK_RPM_PACKAGE_LICENSE "MIT")

src/logo/image/image.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -398,7 +398,7 @@ bool ffLogoPrintImageIfExists(FFinstance* instance, FFLogoType type)
398398
#else //FF_HAVE_IMAGEMAGICK{6, 7}
399399
bool ffLogoPrintImageIfExists(FFinstance* instance, FFLogoType type)
400400
{
401-
FF_UNUSED(instance);
401+
FF_UNUSED(instance, type);
402402
return false;
403403
}
404404
#endif //FF_HAVE_IMAGEMAGICK{6, 7}

0 commit comments

Comments
 (0)