summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xacprep24
1 files changed, 20 insertions, 4 deletions
diff --git a/acprep b/acprep
index fb9ebd6c..be811b6d 100755
--- a/acprep
+++ b/acprep
@@ -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',