How to make Debian package install dependencies?

前端 未结 5 891
离开以前
离开以前 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:23

    If you want to avoid creating a local APT repository, you can do:

    dpkg -i mypackage.deb
    apt-get install --fix-missing
    

    If you do want to create a local repository, you can use reprepro for this.

提交回复
热议问题