检查包的依赖关系

时间:2014-02-03 07:33:06

标签: makefile sh

我正在编写一个脚本,我想检查这些列出的软件包是否安装在linux-box中?,然后继续进行进一步的安装。

对于前。

    subversion
    GCC compiler
    ncurses-dev
    gettext
    texinfo
    patch
    bison
    flex
    openssl
    libssl-dev

我没有找到任何检查依赖关系的标准方法,请帮助!

1 个答案:

答案 0 :(得分:0)

我想到的最简单的解决方案是:

check-packages:
    which bison
    which svn
    which flex

等等。