diff options
author | John Wiegley <johnw@newartisans.com> | 2011-02-04 23:09:07 -0500 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2011-02-04 23:15:48 -0500 |
commit | a8b02cacd7ae2cd3ebc160f3347ca03a3acf8820 (patch) | |
tree | 0fd6615585ef349ec59116900fb075df60b0aebe /acprep | |
parent | 986afb43d0095284902e9696f4a8cc5fda73af2d (diff) | |
download | fork-ledger-a8b02cacd7ae2cd3ebc160f3347ca03a3acf8820.tar.gz fork-ledger-a8b02cacd7ae2cd3ebc160f3347ca03a3acf8820.tar.bz2 fork-ledger-a8b02cacd7ae2cd3ebc160f3347ca03a3acf8820.zip |
Added support for Ubuntu Lucid to acprep
Diffstat (limited to 'acprep')
-rwxr-xr-x | acprep | 30 |
1 files changed, 20 insertions, 10 deletions
@@ -214,19 +214,29 @@ class BoostInfo(object): if system == 'centos': return [ 'boost-devel' ] + elif system == 'ubuntu-lucid': + return [ 'bjam', 'autopoint', + 'libboost-dev', + 'libboost-regex-dev', + 'libboost-date-time-dev', + 'libboost-filesystem-dev', + 'libboost-iostreams-dev', + 'libboost-python-dev' ] + elif system == 'ubuntu-karmic': - return [ 'bjam', 'libboost1.40-dev', - 'libboost-regex1.40-dev', - 'libboost-date-time1.40-dev', - 'libboost-filesystem1.40-dev', - 'libboost-python1.40-dev' ] + return [ 'bjam', 'libboost-dev', + 'libboost-regex-dev', + 'libboost-date-time-dev', + 'libboost-filesystem-dev', + 'libboost-iostreams-dev', + 'libboost-python-dev' ] elif system == 'ubuntu-hardy': - return [ 'bjam', 'libboost1.35-dev', - 'libboost-python1.35-dev', - 'libboost-regex1.35-dev', - 'libboost-date-time1.35-dev', - 'libboost-filesystem1.35-dev' ] + return [ 'bjam', 'libboost-dev', + 'libboost-python-dev', + 'libboost-regex-dev', + 'libboost-date-time-dev', + 'libboost-filesystem-dev' ] class CommandLineApp(object): "Base class for building command line applications." |