Skip to content
This repository has been archived by the owner on Dec 30, 2023. It is now read-only.

Commit

Permalink
Create .deb with proper dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
ThijsWithaar committed Nov 25, 2017
1 parent 6a6164f commit d65048b
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 @@ -44,7 +44,7 @@ install( FILES ${CMAKE_SOURCE_DIR}/FindgenFFT.cmake DESTINATION ${destdir} )
set(CPACK_PACKAGE_NAME "genFFT")
set(CPACK_PACKAGE_CONTACT "[email protected]")
set(CPACK_PACKAGE_DESCRIPTION "A software library containing FFT functions written in OpenCL")
set(CPACK_PACKAGE_DESCRIPTION_SUMMARY "FFT in OpenCL")
set(CPACK_PACKAGE_DESCRIPTION_SUMMARY "OpenCL implementation of an FFT library, by Intel")
set(CPACK_PACKAGE_FILE_NAME "${CMAKE_PROJECT_NAME}-${GENFFT_VERSION}-${CMAKE_HOST_SYSTEM_NAME}" )
set(CPACK_PACKAGE_VENDOR "Neutral")
set(CPACK_RESOURCE_FILE_LICENSE "${CMAKE_SOURCE_DIR}/license.txt")
Expand All @@ -54,7 +54,8 @@ if( WIN32 )
set( CPACK_SOURCE_GENERATOR "ZIP" )
set( CPACK_GENERATOR "ZIP" )
else( )
set(CPACK_DEBIAN_PACKAGE_DEPENDS "opencl-icd (>=1.2)")
set( CPACK_DEBIAN_PACKAGE_DEPENDS "opencl-c-headers (>=1.2)")
set( CPACK_DEBIAN_PACKAGE_RECOMMENDS "build-essential, cmake")

set( CPACK_SOURCE_GENERATOR "TGZ;DEB" )
set( CPACK_GENERATOR "TGZ;DEB" )
Expand Down

0 comments on commit d65048b

Please sign in to comment.