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'