Update m4/.gitignore.
[xz.git] / build-aux / version.sh
blobbef1b33d9f408589959dc472d399d90e65684e27
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 | tr '\n' '|' \
21 | sed 's/|/./; s/|/./; s/|//g' \
22 | tr -d '\r\n'