Skip to content

Commit

Permalink
feat(packaging): create deb packaging dragonflydb#249 (dragonflydb#313)
Browse files Browse the repository at this point in the history
  • Loading branch information
acheevbhagat authored Sep 20, 2022
1 parent 0a1b5eb commit 751bcb9
Show file tree
Hide file tree
Showing 3 changed files with 41 additions and 1 deletion.
2 changes: 2 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -24,3 +24,5 @@ include_directories(helio)

add_subdirectory(helio)
add_subdirectory(src)

include(cmake/Packing.cmake)
39 changes: 39 additions & 0 deletions cmake/Packing.cmake
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
# Packages the dragonfly binary into a .deb package
# Use this to generate .deb package from build directory
# cpack -G DEB
#
# Resulting packages can be found under _packages/

set(CPACK_PACKAGE_NAME "dragonflydb"
CACHE STRING "dragonflydb"
)

set(CPACK_PACKAGE_DESCRIPTION_SUMMARY "A modern replacement for Redis and Memcached"
CACHE STRING "A modern replacement for Redis and Memcached"
)

set(CPACK_PACKAGE_VENDOR "DragonflyDB")

set(CPACK_OUTPUT_FILE_PREFIX "${CMAKE_SOURCE_DIR}/_packages")

set(CPACK_PACKAGING_INSTALL_PREFIX "/usr/share/dragonfly")

set(CPACK_PACKAGE_VERSION_MAJOR ${PROJECT_VERSION_MAJOR})
set(CPACK_PACKAGE_VERSION_MINOR ${PROJECT_VERSION_MINOR})
set(CPACK_PACKAGE_VERSION_PATCH ${PROJECT_VERSION_PATCH})

set(CPACK_PACKAGE_CONTACT "[email protected]")
set(CPACK_DEBIAN_PACKAGE_MAINTAINER "DragonflyDB maintainers")

set(CPACK_RESOURCE_FILE_LICENSE "${CMAKE_CURRENT_SOURCE_DIR}/LICENSE.md")
set(CPACK_RESOURCE_FILE_README "${CMAKE_CURRENT_SOURCE_DIR}/README.md")

set(CPACK_COMPONENTS_GROUPING ALL_COMPONENTS_IN_ONE)

set(CPACK_DEB_COMPONENT_INSTALL YES)

install(TARGETS dragonfly DESTINATION . COMPONENT dragonfly)

set(CPACK_COMPONENTS_ALL dragonfly)

include(CPack)
1 change: 0 additions & 1 deletion src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ add_third_party(
jsoncons
URL https://github.com/danielaparker/jsoncons/archive/refs/tags/v0.168.7.tar.gz
CMAKE_PASS_FLAGS "-DJSONCONS_BUILD_TESTS=OFF"

LIB "none"
)

Expand Down

0 comments on commit 751bcb9

Please sign in to comment.