diff options
-rwxr-xr-x | acprep | 19 |
1 files changed, 18 insertions, 1 deletions
@@ -62,7 +62,7 @@ class BoostInfo(object): if system in ['centos']: return [ 'boost-devel' ] - elif system in ['ubuntu-bionic', 'ubuntu-xenial', + elif system in ['ubuntu-bionic', 'ubuntu-xenial', 'ubuntu-eoan', 'ubuntu-trusty', 'ubuntu-cosmic']: return [ 'libboost-dev', 'libboost-date-time-dev', @@ -583,6 +583,23 @@ class PrepareBuild(CommandLineApp): 'libutfcpp-dev', 'sloccount' ]) + elif release == 'eoan': + packages.extend([ + 'doxygen', + 'cmake', + 'ninja-build', + 'zlib1g-dev', + 'libbz2-dev', + 'python-dev', + 'libgmp3-dev', + 'libmpfr-dev', + 'gettext', + 'libedit-dev', + 'texinfo', + 'lcov', + 'libutfcpp-dev', + 'sloccount' + ]) elif release == 'xenial': packages.extend([ 'doxygen', |