diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2021-04-28 21:31:54 +0000 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2021-04-29 01:42:02 +0300 |
commit | 44001e1f1fb81601827b8212f81f5b1760ae9231 (patch) | |
tree | de9204b6191fb05592f43015989f4bcaaef13d75 /debian/README.Debian | |
parent | README update (diff) | |
download | config-links-44001e1f1fb81601827b8212f81f5b1760ae9231.tar.gz config-links-44001e1f1fb81601827b8212f81f5b1760ae9231.zip |
add Debian packaging filesdebian/v0.1-1
Basically copied them from my other project linux-status.
Diffstat (limited to '')
-rw-r--r-- | debian/README.Debian | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/debian/README.Debian b/debian/README.Debian new file mode 100644 index 0000000..e70c2f8 --- /dev/null +++ b/debian/README.Debian @@ -0,0 +1,44 @@ +config-links for Debian +---------------------- + +There's a Vagrantfile to make maintenance easier. To start, use `vagrant up`, +then `vagrant ssh`. + +There're a bunch of useful one-liners in Makefile. Everything is built in +debian/build-area/. + + * Make a source package: + + make src + make src/test # Ignores uncommitted changes. + + * Make a binary package: + + make bin + make bin/test # Ignores uncommmited changes. + + * Add a changelog entry (you'll need to fix it manually): + + make dch + + * Tag the last commit: + + make tag + + * Upload the source package to the PPA: + + make upload + + To make the package available for different Ubuntu distributions, copy the + package binaries on Launchpad. I dread the day when this becomes + impossible. + + * Make a binary package using pbuilder (useful for testing that the package + builds on a particular distribution): + + make dist/create DIST=focal + make dist/update DIST=focal + make dist DIST=focal + make dist/test DIST=focal # Ignores uncommitted changes. + + -- Egor Tensin <Egor.Tensin@gmail.com> Wed, 28 Apr 2021 21:14:04 +0000 |