-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
5 changed files
with
79 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
MAKEFILES_VERSION=7.5.0 | ||
MAKEFILES_VERSION=7.6.0 | ||
.DEFAULT_GOAL:=dogu-release | ||
|
||
WORKSPACE=/workspace | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
##@ Version | ||
|
||
# This makefile is used to get the sha256sum of a specific github tag-src.tar.gz or .zip. | ||
# You may set any of the following variables before your make call to change the hash url. | ||
|
||
SHA_SUM_ORGANISATION?="cloudogu" | ||
SHA_SUM_REPOSITORY?="ecosystem" | ||
SHA_SUM_FILE_TYPE?="tar.gz" | ||
SHA_SUM_VERSION?="v20.04.4-2" | ||
SHA_SUM_URL?="https://github.com/${SHA_SUM_ORGANISATION}/${SHA_SUM_REPOSITORY}/archive/refs/tags/${SHA_SUM_VERSION}.${SHA_SUM_FILE_TYPE}" | ||
|
||
.PHONY: sha-sum | ||
sha-sum: ## Print out the version | ||
@echo "Downloading from: ${SHA_SUM_URL}" | ||
@wget -O - -o /dev/null "${SHA_SUM_URL}" > .download.for.hash \ | ||
|| (echo "Could not be downloaded" && exit 1) \ | ||
&& cat .download.for.hash | sha256sum | ||
@rm -f .download.for.hash |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters