d2/d2.spec

37 lines
733 B
RPMSpec
Raw Permalink Normal View History

2023-10-03 01:09:02 +03:00
%define debug %nil
%define debug_package %nil
Name: d2
2025-02-05 07:37:05 +00:00
Version: 0.6.9
2023-10-03 01:09:02 +03:00
Release: 1
Summary: D2 is a modern diagram scripting language
URL: https://d2lang.com
Source0: https://github.com/terrastruct/d2/archive/v%{version}/%{name}-%{version}.tar.gz
License: MPL 2.0
Group: Development/Other
BuildRequires: go
BuildRequires: git-core
BuildRequires: upx
2024-11-08 08:02:08 +00:00
BuildRequires: pkgconfig(openssl3.3)
2023-10-03 01:09:02 +03:00
%description
A modern diagram scripting language that turns text to
diagrams.
%prep
%setup -q
%build
2024-08-02 08:12:23 +00:00
export GOPROXY=https://proxy.golang.org/cached-only
2023-10-03 01:09:02 +03:00
go build --ldflags="-s -w" -o bin/%{name} .
upx bin/%{name}
%install
install -Dm0755 bin/%{name} %{buildroot}%{_bindir}/%{name}
%files
%doc README.md LICENSE.txt
%{_bindir}/%{name}