mirror of
https://github.com/vacp2p/mdcheckr.git
synced 2026-01-09 15:07:57 -05:00
update packaging code
This commit is contained in:
@@ -2,28 +2,26 @@
|
||||
|
||||
## Packaging
|
||||
|
||||
An unsigned Debian package can be created from the repository in a few steps.
|
||||
## Source release
|
||||
|
||||
A source tarball can be created from the `Makefile`:
|
||||
|
||||
```bash
|
||||
git checkout v1.0
|
||||
make source-release
|
||||
```
|
||||
|
||||
This is suitable as a "pristine" source for downstream packagers.
|
||||
|
||||
## Debian unsigned package
|
||||
|
||||
An unsigned Debian package can also be created from the repository in a few steps.
|
||||
|
||||
Check out the version you want:
|
||||
|
||||
```bash
|
||||
VERSION=1.0
|
||||
git checkout v$VERSION
|
||||
```
|
||||
|
||||
Write a 'pristine source' tarball from `git`:
|
||||
|
||||
```bash
|
||||
git archive --format tar.gz HEAD --prefix mdcheckr-$VERSION/ mdcheckr tests README.md LICENSE.md > mdcheckr_$VERSION.orig.tar.gz
|
||||
```
|
||||
|
||||
Extract, add the Debian goodies, compile, and cleanup:
|
||||
|
||||
```bash
|
||||
tar -xzf mdcheckr_$VERSION.orig.tar.gz
|
||||
cp -Rf debian/ mdcheckr-$VERSION/
|
||||
(cd mdcheckr-$VERSION/ && debuild -us -uc)
|
||||
rm -Rf mdcheckr-$VERSION/
|
||||
git checkout v1.0
|
||||
make unsigned-package
|
||||
```
|
||||
|
||||
You will then have source and binary packages in the current directory.
|
||||
|
||||
Reference in New Issue
Block a user