esbuild/esbuild.spec
Sergey Zhemoytel f3ac35ba62 0.18.9
2023-06-26 08:52:20 +00:00

32 lines
648 B
RPMSpec

%define debug %nil
%define debug_package %nil
Name: esbuild
Version: 0.18.9
Release: 1
Summary: An extremely fast bundler for the web
URL: https://esbuild.github.io
Source0: https://github.com/evanw/esbuild/archive/v%{version}/%{name}-%{version}.tar.gz
License: MIT
Group: Development/Other
BuildRequires: go
BuildRequires: git-core
BuildRequires: upx
%description
An extremely fast bundler for the web
%prep
%setup -q
%build
CGO_ENABLED=0 go build -ldflags="-s -w" -o bin/%{name} ./cmd/esbuild
upx bin/%{name}
%install
install -Dm0755 bin/%{name} %{buildroot}%{_bindir}/%{name}
%files
%doc README.md LICENSE.md docs
%{_bindir}/%{name}