Hot answers tagged equivs
25
A meta-package like this can be created with a tool called equivs which will create a package with just dependency information.
First, create a directory:
mkdir my-metapackage
cd my-metapackage/
Now run the program:
equivs-control ns-control
It will create a file called ns-control, open this file with your text editor.
The control file that you ...
6
For where you're actually providing the dependency, I'd use checkinstall to do the installation. checkinstall basically replaces make install and generates a proper .deb package and then installs that. Not only does that allow you to remove or upgrade the package in a better way (when the time comes), it satisfies dependencies from other applications.
The ...
Only top voted, non community-wiki answers of a minimum length are eligible