Skip to content
Advertisement

Create multiple Debian packages for data files from one source

I have a bunch of dictionary files for the dictd dictionary program. There are 2 files for each dictionary (a dict.dz and a .index file) and there are 8 dictionaries in total.

The installation of the dictionaries is really simple, this is what I currently have in my script:

JavaScript

Now I want to package this lot of files up into .deb packages, one .deb package per dictionary. I’d really like to have one source .deb package that then creates all the separate packages, rather than having to create and maintain 8 individual packages (a number that might grow over time).

However I don’t understand how the debian/packagename.dirs files relate to what goes in the debian/rules file. I tried downloading and looking at the source package for freedict, which is very similar to what I want to do, but its rules file is very complex.

Advertisement

Answer

You could use the dh-make package and specifiy “multiple binary”. It’s a bit like a wizard for creating the skeleton debian/ directory.

E.g.

JavaScript

Typing “m” at this point will set it up so that a single source package builds several packages.

After the dh_make wizard has set things up you will need to maintain debian/[packagename].dirs and debian/[packagename].install so that the packager knows which files go in which .deb.

E.g.
skeleton.dirs

JavaScript

skeleton.install

JavaScript
User contributions licensed under: CC BY-SA
7 People found this is helpful
Advertisement