mirror of
https://github.com/libimobiledevice/libirecovery.git
synced 2026-05-17 20:30:36 +00:00
autoconf: Automatically derive version number from latest git tag
This commit is contained in:
+5
-1
@@ -3,7 +3,11 @@ ACLOCAL_AMFLAGS = -I m4
|
||||
SUBDIRS = src include tools udev
|
||||
|
||||
EXTRA_DIST = \
|
||||
README.md
|
||||
README.md \
|
||||
git-version-gen
|
||||
|
||||
dist-hook:
|
||||
echo $(VERSION) > $(distdir)/.tarball-version
|
||||
|
||||
DISTCHECK_CONFIGURE_FLAGS = \
|
||||
--with-udevrulesdir=$$dc_install_base/$(udevrulesdir)
|
||||
|
||||
+1
-1
@@ -2,7 +2,7 @@
|
||||
# Process this file with autoconf to produce a configure script.
|
||||
|
||||
AC_PREREQ(2.68)
|
||||
AC_INIT([libirecovery], [1.0.1], [https://github.com/libimobiledevice/libirecovery/issues],, [https://libimobiledevice.org])
|
||||
AC_INIT([libirecovery], [m4_esyscmd(./git-version-gen $RELEASE_VERSION)], [https://github.com/libimobiledevice/libirecovery/issues], [], [https://libimobiledevice.org])
|
||||
AM_INIT_AUTOMAKE([dist-bzip2 no-dist-gzip check-news])
|
||||
m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES])
|
||||
AC_CONFIG_SRCDIR([src/])
|
||||
|
||||
Executable
+20
@@ -0,0 +1,20 @@
|
||||
#!/bin/sh
|
||||
SRCDIR=`dirname $0`
|
||||
if test -n "$1"; then
|
||||
VER=$1
|
||||
else
|
||||
if test -r "${SRCDIR}/.git" && test -x "`which git`" ; then
|
||||
git update-index -q --refresh
|
||||
if ! VER=`git describe --tags --dirty 2>/dev/null`; then
|
||||
COMMIT=`git rev-parse --short HEAD`
|
||||
DIRTY=`git diff --quiet HEAD || echo "-dirty"`
|
||||
VER=`sed -n '1,/RE/s/Version \(.*\)/\1/p' ${SRCDIR}/NEWS`-git-${COMMIT}${DIRTY}
|
||||
fi
|
||||
else
|
||||
if test -f "${SRCDIR}/.tarball-version"; then
|
||||
VER=`cat "${SRCDIR}/.tarball-version"`
|
||||
fi
|
||||
fi
|
||||
fi
|
||||
VER=`printf %s "$VER" | head -n1`
|
||||
printf %s "$VER"
|
||||
Reference in New Issue
Block a user