I've been manually applying patches to Wine for use on my own machine, but I want to put it in a PPA for my friends and relations.
Currently I follow this procedure:
- Get the latest source from an upstream PPA via
apt-get source
- Use
patch
to apply my unofficial, unsupported patches. - Create a package using
dpkg-buildpackage -rfakeroot -uc -b
This is fine for creating a package that will run on my local machine. However I now want to distribute this custom build to others via a PPA.
Is this procedure sufficient, or is there a more correct and/or easier to maintain procedure I should be following specifically for Wine?