X-Git-Url: https://gitweb.ps.run/ps-cgit/blobdiff_plain/e8920b52629911f92dbbecdb1d7675760e7a781e..96a24212fda0047a7cd5d79cc43377ce24c1f85c:/Makefile diff --git a/Makefile b/Makefile index 12fd652..2fbdf67 100644 --- a/Makefile +++ b/Makefile @@ -1,9 +1,11 @@ -CGIT_VERSION = v0.5 +CGIT_VERSION = v0.6 CGIT_SCRIPT_NAME = cgit.cgi CGIT_SCRIPT_PATH = /var/www/htdocs/cgit CGIT_CONFIG = /etc/cgitrc CACHE_ROOT = /var/cache/cgit SHA1_HEADER = +GIT_VER = 1.5.3 +GIT_URL = http://www.kernel.org/pub/software/scm/git/git-$(GIT_VER).tar.bz2 # # Let the user override the above settings. @@ -17,7 +19,7 @@ OBJECTS = shared.o cache.o parsing.o html.o ui-shared.o ui-repolist.o \ ui-snapshot.o ui-blob.o ui-tag.o -.PHONY: all git install clean distclean force-version +.PHONY: all git install clean distclean force-version get-git all: cgit git @@ -64,3 +66,6 @@ clean: distclean: clean git clean -d -x cd git && git clean -d -x + +get-git: + curl $(GIT_URL) | tar -xj && rm -rf git && mv git-$(GIT_VER) git