How to make Debian package install dependencies?

前端 未结 5 902
离开以前
离开以前 2021-02-02 14:03

I want to make a simple Debian package to install a simple tool that depends on Qt4 libs.

In control file I have defined that it depends on Qt4 libs however, by the time

5条回答
  •  滥情空心
    2021-02-02 14:34

    Per @textshell in this answer:

    starting with apt 1.1 (available in Xenial (16.04), stretch) apt install also allows local files:

    sudo apt install ./foo-1.2.3.deb
    

    So much simpler and cleaner.

    See the release announcment

    This will also install dependencies, just like a normal apt install or apt-get install.

提交回复
热议问题