mirror of
https://abf.rosa.ru/djam/terramate.git
synced 2025-02-23 14:22:49 +00:00
36 lines
674 B
RPMSpec
36 lines
674 B
RPMSpec
|
%define debug %nil
|
||
|
%define debug_package %nil
|
||
|
|
||
|
|
||
|
Name: terramate
|
||
|
Version: 0.2.18
|
||
|
Release: 1
|
||
|
Summary: Terraform addons
|
||
|
URL: https://terramate.io
|
||
|
Source0: https://github.com/mineiros-io/terramate/archive/v%{version}/%{name}-%{version}.tar.gz
|
||
|
License: ASL 2.0
|
||
|
Group: Development/Other
|
||
|
BuildRequires: go
|
||
|
BuildRequires: git-core
|
||
|
BuildRequires: upx
|
||
|
|
||
|
%description
|
||
|
Terramate adds powerful capabilities such as code
|
||
|
generation, stacks, orchestration, change detection,
|
||
|
data sharing and more to Terraform.
|
||
|
|
||
|
%prep
|
||
|
%setup -q
|
||
|
|
||
|
%build
|
||
|
%make build
|
||
|
upx bin/%{name}
|
||
|
|
||
|
%install
|
||
|
install -Dm0755 bin/%{name} %{buildroot}%{_bindir}/%{name}
|
||
|
|
||
|
%files
|
||
|
%doc README.md LICENSE
|
||
|
%{_bindir}/%{name}
|
||
|
|