Skip to content

Commit 3dba61e

Browse files
committed
Fix for package building on Ubuntu 17.10
1 parent 50fa7e5 commit 3dba61e

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

CMakeLists.txt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -124,6 +124,11 @@ else()
124124
set(CPACK_DEBIAN_PACKAGE_DEPENDS "python3, libpcre3, libpcrecpp0v5, libgmpxx4ldbl, libboost-python1.58.0, libboost-system1.58.0, libboost-filesystem1.58.0, libboost-program-options1.58.0, libboost-regex1.58.0, libstdc++6, uuid-runtime, libgtkmm-3.0-1v5, texlive, texlive-latex-extra, python3-matplotlib, python3-mpmath, dvipng, python-sympy")
125125
message("-- This is an Ubuntu 16.04 system")
126126
endif()
127+
if(LINUX_ISSUE MATCHES "17.10")
128+
set(CPACK_SYSTEM_NAME "artful")
129+
set(CPACK_DEBIAN_PACKAGE_DEPENDS "python3, libpcre3, libpcrecpp0v5, libgmpxx4ldbl, libboost-python1.58.0, libboost-system1.58.0, libboost-filesystem1.58.0, libboost-program-options1.58.0, libboost-regex1.58.0, libstdc++6, uuid-runtime, libgtkmm-3.0-1v5, texlive, texlive-latex-extra, python3-matplotlib, python3-mpmath, dvipng, python-sympy")
130+
message("-- This is an Ubuntu 17.10 system")
131+
endif()
127132
endif(LINUX_ISSUE MATCHES "Ubuntu")
128133
if(LINUX_ISSUE MATCHES "Mint")
129134
set(CPACK_GENERATOR "DEB")

0 commit comments

Comments
 (0)