mirror of
https://github.com/terrapkg/packages.git
synced 2026-06-06 03:42:19 +00:00
9bbe91be03
* fix(lint): prismlauncher* fluent-icon-theme * fix(lint): fix lints for 6 packages (#578) * fix(lint): fix rpmlint lints for youki package * fix(lint): fix rpmlint lints for xdg-desktop-portal-pantheon * fix(lint): fix rpmlint lints for wingpanel package * fix(lint): fix rpmlint lints for wingpanel-indicator-sound package * fix(lint): fix rpmlint lints for wingpanel-indicator-session package * fix(lint): fix rpmlint lints for wingpanel-indicator-power package * fix(lint): * * fix random typos * feat: revert anda/desktops * fix: armcord-bin authy blahaj * fix: ... anki authy discord~ aya~sound groovy kotlin libappimage qt5-pim * fix: ... qdjango moby-buildx nim-nightly nim system76-scheduler unity-scope-home kondo pop-launcher fuc graalvm vala-lint-nightly * fix: armcord-bin authy blahaj groovy * fix: ... libappimage moby0buildx nim-nightly nim system76-scheduler subatomic * fix blahaj * fix: kondo * fix: libappimage moby-buildx system76-scheduler nim-nightly * fix: subatomic * fix: subatomic * fix: nim * Update anki.spec Signed-off-by: madomado <wboy111@outlook.com> * fix: libappimage nim-nightly * fix: moby-buildx subatomic * fix: moby-buildx subatomic --------- Signed-off-by: madomado <wboy111@outlook.com> Co-authored-by: HTGAzureX1212 <39023054+HTG-YT@users.noreply.github.com>
46 lines
886 B
RPMSpec
46 lines
886 B
RPMSpec
%define debug_package %{nil}
|
|
|
|
Name: bat-extras
|
|
Version: 2023.06.15
|
|
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: https://github.com/eth-p/bat-extras/archive/refs/tags/v%{version}.tar.gz
|
|
|
|
BuildRequires: bash
|
|
Requires: bash
|
|
BuildArch: noarch
|
|
|
|
%description
|
|
%{summary}.
|
|
|
|
%prep
|
|
%autosetup -n bat-extras-%{version}
|
|
|
|
|
|
%build
|
|
# ./build.sh --no-verify
|
|
|
|
|
|
%install
|
|
./build.sh --install --prefix=%{buildroot}%{_prefix}
|
|
|
|
mkdir -p %{buildroot}%{_mandir}/man1/
|
|
cp -v man/* %{buildroot}%{_mandir}/man1/
|
|
|
|
chmod -x %_mandir/man1/*
|
|
|
|
|
|
%files
|
|
%license LICENSE.md
|
|
%doc doc/
|
|
%{_bindir}/bat*
|
|
%{_bindir}/prettybat
|
|
%{_mandir}/man1/*
|
|
|
|
%changelog
|
|
* Mon Oct 03 2022 Cappy Ishihara <cappy@cappuchino.xyz> - 2022.07.27-1
|
|
- Initial release
|