common_w32res.rc: White space edits
[xz/debian.git] / build-aux / version.sh
blobd1a12a941d2a6f271febfbe99574806940c1f00c
1 #!/bin/sh
2 # SPDX-License-Identifier: 0BSD
4 #############################################################################
6 # Get the version string from version.h and print it out without
7 # trailing newline. This makes it suitable for use in configure.ac.
9 #############################################################################
11 # Author: Lasse Collin
13 #############################################################################
15 sed -n 's/LZMA_VERSION_STABILITY_ALPHA/alpha/
16 s/LZMA_VERSION_STABILITY_BETA/beta/
17 s/LZMA_VERSION_STABILITY_STABLE//
18 s/^#define LZMA_VERSION_[MPS][AIT][AJNT][A-Z]* //p' \
19 src/liblzma/api/lzma/version.h \
20 | sed 'N; N; N; s/\n/./g; s/\.$//' \
21 | tr -d '\012\015\025'