From a7abd16441eb217a7641f502fe9d0b45c3dc99b7 Mon Sep 17 00:00:00 2001 From: LeFantome Date: Mon, 16 Dec 2024 13:28:02 -0800 Subject: [PATCH] user/terraform: new package --- user/terraform/template.py | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 user/terraform/template.py diff --git a/user/terraform/template.py b/user/terraform/template.py new file mode 100644 index 0000000000..e84a65a811 --- /dev/null +++ b/user/terraform/template.py @@ -0,0 +1,17 @@ +pkgname = "terraform" +pkgver = "1.10.2" +pkgrel = 0 +build_style = "go" +makedepends = ["go"] +pkgdesc = "Tool for building and updating infrastructure as code idempotently" +maintainer = "LeFantome " +license = "BUSL-1.1" +url = "https://github.com/hashicorp/terraform" +source = f"{url}/archive/v{pkgver}.tar.gz" +sha256 = "3be0296246a96acb5d45cb354ca32417bffd55d8086a4e3fcd71073e4295bb17" +# Tests cause a segfault - compiled program works +options = ["!check"] + +def post_install(self): + self.install_license("LICENSE") +