2020-05-10 13:58:05 +00:00
|
|
|
# This value gets embedded in gitstatusd at build time. It is
|
|
|
|
# read by ./Makefile. `gitstatusd --version` reports it back.
|
|
|
|
#
|
|
|
|
# This value is also read by shell bindings (indirectly, through
|
2020-06-13 09:15:44 +00:00
|
|
|
# ./install) when using GITSTATUS_DAEMON or usrbin/gitstatusd.
|
2021-06-10 08:15:02 +00:00
|
|
|
gitstatus_version="v1.5.1"
|
2020-05-10 13:58:05 +00:00
|
|
|
|
2020-05-13 07:40:53 +00:00
|
|
|
# libgit2 is a build time dependency of gitstatusd. The values of
|
|
|
|
# libgit2_version and libgit2_sha256 are read by ./build.
|
2020-05-10 13:58:05 +00:00
|
|
|
#
|
|
|
|
# If ./deps/libgit2-${libgit2_version}.tar.gz doesn't exist, build
|
|
|
|
# downloads it from the following location:
|
|
|
|
#
|
|
|
|
# https://github.com/romkatv/libgit2/archive/${libgit2_version}.tar.gz
|
|
|
|
#
|
|
|
|
# Once downloaded, the tarball is stored at the path indicated
|
|
|
|
# above so that repeated builds don't consume network bandwidth.
|
2020-05-13 07:40:53 +00:00
|
|
|
#
|
|
|
|
# If sha256 of ./deps/libgit2-${libgit2_version}.tar.gz doesn't match,
|
|
|
|
# build gets aborted.
|
2021-06-27 16:48:35 +00:00
|
|
|
libgit2_version="tag-5860a42d19bcd226cb6eff2dcbfcbf155d570c73"
|
|
|
|
libgit2_sha256="2289203eda19913a2f6d2b26a15384cc43872bffd70e87a7659f9a22da79058e"
|