Displaying 2 results from an estimated 2 matches for "angelog".
Did you mean:
angelo
2007 Sep 21
2
Creating a .deb file
Hi,
Does anyone have any appropriate debian control files so that I can create a
.deb package for FLAC? I don't want to just compile it and overwrite in case
it gets automatically overwritten by the Debian package management tools.
Cheers
Andy
2007 Sep 21
0
Creating a .deb file
...y need from it is the
debian/ directory.
Now, apply it to your flac-fresh directory:
$ cd flac-fresh/
$ zcat ../flac*.diff.gz | patch -p1
Now you're in the flac-fresh directory; let's increase the version number
of this Debian package using dch, the "d"ebian "ch"angelog editor, telling
it to "i"ncrement the version.
$ dch -i
In the editor that spawns, write some short note or nothing at all; the
important thing is that the version number is now higher than the one
Debian provides. Now build the package:
$ dpkg-buildpackage -rfakeroot
Now you...