From 277b9d5393b0a1f2e99e6f9e3689dd3eaec2686e Mon Sep 17 00:00:00 2001 From: Gerard Casas Saez Date: Mon, 1 Apr 2024 18:20:31 -0600 Subject: [PATCH] add ghpc build --- pkgs/ghpc/Makefile | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 pkgs/ghpc/Makefile diff --git a/pkgs/ghpc/Makefile b/pkgs/ghpc/Makefile new file mode 100644 index 0000000..9dfc5b0 --- /dev/null +++ b/pkgs/ghpc/Makefile @@ -0,0 +1,15 @@ +VERSION ?= 1.31.0 +NAME = ghpc + +SOURCE = https://github.com/GoogleCloudPlatform/hpc-toolkit/archive/refs/tags/v$(VERSION).tar.gz + +include $(shell git rev-parse --show-toplevel)/pkgs/build.mk + +configure: + echo "Nothing to configure" + +build: + $(MAKE) ghpc + +install: + cp ./ghpc $(DESTDIR) \ No newline at end of file