Skip to content

Commit

Permalink
Added support new archive formats for generator of source packages (fix
Browse files Browse the repository at this point in the history
#2820)

The command 'make package_source' will be generate .tar.bz2 and .tar.xz archives in additional to the .tar.gz for tarballs
  • Loading branch information
alex-w committed Nov 3, 2022
1 parent 3b48ec7 commit 94821fc
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -969,8 +969,9 @@ IF(GENERATE_PACKAGE_TARGET)
SET(CPACK_PACKAGE_VERSION_PATCH "${STELLARIUM_PATCH}")
SET(CPACK_PACKAGE_INSTALL_DIRECTORY "stellarium")
SET(CPACK_SOURCE_PACKAGE_FILE_NAME "stellarium-${STELLARIUM_PUBLIC_VERSION}")
SET(CPACK_SOURCE_GENERATOR "TGZ")
SET(CPACK_GENERATOR "TGZ")
SET(CPACK_SOURCE_GENERATOR "TBZ2;TXZ;TGZ")
SET(CPACK_GENERATOR "TBZ2;TXZ;TGZ")
SET(CPACK_PACKAGE_CHECKSUM "SHA256")
SET(CPACK_STRIP_FILES "bin/stellarium")
SET(CPACK_PACKAGE_EXECUTABLES "stellarium" "Stellarium")
SET(CPACK_SOURCE_IGNORE_FILES "/.git/" "/.github/" "builds/" "installers/" "po/stellarium-landscapes-descriptions" "po/stellarium-scenery3d-descriptions" "po/stellarium-skycultures-descriptions" "po/stellarium-desktop" "po/stellarium-metainfo" "util/spout2" "util/DSSToStellarium/toastForShape$" "Stellarium.tag$" "Stellarium.kdevelop.pcs$" "/CMakeLists.txt.user$" "\\\\.gitignore$" "\\\\.clang-format$" "\\\\.yml$" "~$" "\\\\.swp$" "\\\\.#" "/#")
Expand Down

0 comments on commit 94821fc

Please sign in to comment.