mirror of
https://github.com/terrapkg/packages.git
synced 2026-06-01 09:31:58 +00:00
5b17c54b63
* chore(bat-extras): move folder out of langs/rust because it's not actually written in rust * fix(bat-extras): skip verification and misc fix
44 lines
811 B
RPMSpec
44 lines
811 B
RPMSpec
%define debug_package %{nil}
|
|
|
|
Name: bat-extras
|
|
Version: 2024.08.24
|
|
Release: 1%?dist
|
|
Summary: Bash scripts that integrate bat with various command line tools
|
|
|
|
License: MIT
|
|
URL: https://github.com/eth-p/bat-extras
|
|
Source0: %{url}/archive/v%{version}.tar.gz
|
|
|
|
BuildRequires: bash
|
|
Requires: bash
|
|
BuildArch: noarch
|
|
|
|
%description
|
|
%{summary}.
|
|
|
|
%prep
|
|
%autosetup
|
|
|
|
|
|
%build
|
|
|
|
|
|
%install
|
|
./build.sh --install --prefix=%{buildroot}%{_prefix} --no-verify
|
|
|
|
mkdir -p %{buildroot}%{_mandir}/man1/
|
|
cp -v man/* %{buildroot}%{_mandir}/man1/
|
|
|
|
chmod -x %{buildroot}%{_mandir}/man1/*
|
|
|
|
|
|
%files
|
|
%license LICENSE.md
|
|
%{_bindir}/bat*
|
|
%{_bindir}/prettybat
|
|
%{_mandir}/man1/*
|
|
|
|
%changelog
|
|
* Mon Oct 03 2022 Cappy Ishihara <cappy@cappuchino.xyz> - 2022.07.27-1
|
|
- Initial release
|