mirror of
https://abf.rosa.ru/djam/gambit.git
synced 2025-02-24 05:52:56 +00:00
33 lines
533 B
RPMSpec
33 lines
533 B
RPMSpec
%define debug %nil
|
|
%define debug_package %nil
|
|
|
|
Name: gambit
|
|
Version: 0.1.0
|
|
Release: 1
|
|
Summary: Chess in terminal
|
|
URL: https://github.com/maaslalani/gambit
|
|
Source0: %{url}/archive/v%{version}/%{name}-%{version}.tar.gz
|
|
License: MIT
|
|
Group: Games/Boards
|
|
BuildRequires: go
|
|
BuildRequires: git-core
|
|
BuildRequires: upx
|
|
|
|
%description
|
|
Chess board in your terminal
|
|
|
|
%prep
|
|
%setup -q
|
|
|
|
%build
|
|
go build -o %{name}
|
|
|
|
upx %{name}
|
|
|
|
%install
|
|
install -Dm0755 %{name} %{buildroot}%{_bindir}/%{name}
|
|
|
|
%files
|
|
%doc README.md LICENSE
|
|
%{_bindir}/%{name}
|
|
|