diff options
-rwxr-xr-x | acprep | 24 |
1 files changed, 20 insertions, 4 deletions
@@ -63,8 +63,8 @@ class BoostInfo(object): if system in ['centos']: return [ 'boost-devel' ] - elif system in ['ubuntu-bionic', 'ubuntu-xenial', 'ubuntu-eoan', - 'ubuntu-trusty', 'ubuntu-cosmic']: + elif system in ['ubuntu-focal', 'ubuntu-bionic', 'ubuntu-xenial', + 'ubuntu-eoan', 'ubuntu-trusty', 'ubuntu-cosmic']: return [ 'libboost-dev', 'libboost-date-time-dev', 'libboost-filesystem-dev', @@ -548,8 +548,24 @@ class PrepareBuild(CommandLineApp): 'sudo', 'apt-get', 'install', 'build-essential', ] - - if release == 'bionic': + if release == 'focal': + 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 == 'bionic': packages.extend([ 'doxygen', 'cmake', |