2022-10-28 15:23:31 +02:00
|
|
|
#
|
|
|
|
# spec file for package xplr
|
|
|
|
#
|
|
|
|
# Copyright (c) 2022 SUSE LLC
|
|
|
|
#
|
|
|
|
# All modifications and additions to the file contributed by third parties
|
|
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
|
|
# upon. The license for this file, and modifications and additions to the
|
|
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
|
|
# license for the pristine package is not an Open Source License, in which
|
|
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
|
|
# published by the Open Source Initiative.
|
|
|
|
|
|
|
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
|
|
|
#
|
|
|
|
|
|
|
|
|
|
|
|
Name: xplr
|
|
|
|
Version: 0.19.4
|
|
|
|
Release: 0
|
|
|
|
Summary: Hackable, minimal, fast TUI file explorer
|
|
|
|
License: MIT
|
|
|
|
Group: Productivity/File utilities
|
|
|
|
URL: https://github.com/sayanarijit/xplr
|
|
|
|
Source0: https://github.com/sayanarijit/xplr/archive/refs/tags/v%{version}.tar.gz
|
|
|
|
Source1: vendor.tar.gz
|
|
|
|
Source2: cargo_config
|
2022-10-29 01:24:24 +02:00
|
|
|
Source3: https://github.com/sayanarijit/xplr/releases/download/v%{version}/source.tar.gz.asc#/v%{version}.tar.gz.asc
|
2022-10-28 15:23:31 +02:00
|
|
|
BuildRequires: cargo-packaging
|
|
|
|
BuildRequires: rust+cargo
|
|
|
|
BuildRequires: hicolor-icon-theme
|
|
|
|
|
|
|
|
%description
|
|
|
|
xplr is a terminal UI based file explorer that aims to increase our terminal productivity by being a flexible,
|
|
|
|
interactive orchestrator for the ever growing awesome command-line utilities that work with the file-system.
|
|
|
|
To achieve its goal, xplr strives to be a fast, minimal and more importantly, hackable file explorer.
|
|
|
|
|
|
|
|
xplr is not meant to be a replacement for the standard shell commands or the GUI file managers. Rather, it aims
|
|
|
|
to integrate them all and expose an intuitive, scriptable, keyboard controlled, real-time visual interface, also
|
|
|
|
being an ideal candidate for further integration, enabling you to achieve insane terminal productivity.
|
|
|
|
|
|
|
|
%prep
|
|
|
|
%autosetup -a1
|
|
|
|
mkdir -p .cargo
|
|
|
|
cp %{SOURCE2} .cargo/config
|
|
|
|
|
|
|
|
%build
|
|
|
|
%{cargo_build}
|
|
|
|
|
|
|
|
%install
|
|
|
|
%{cargo_install}
|
|
|
|
|
|
|
|
install -Dm644 -T \
|
|
|
|
%{_builddir}/%{name}-%{version}/assets/desktop/%{name}.desktop \
|
|
|
|
%{buildroot}%{_datadir}/applications/%{name}.desktop
|
|
|
|
|
|
|
|
for i in 128 16 32 64; do
|
|
|
|
install -Dm644 "%{_builddir}/%{name}-%{version}/assets/icon/%{name}${i}.png" "%{buildroot}/%{_datadir}/icons/hicolor/${i}-${i}/apps/%{name}.png"
|
|
|
|
done
|
|
|
|
|
|
|
|
install -Dm644 "%{_builddir}/%{name}-%{version}/assets/icon/%{name}.svg" -t "%{buildroot}/%{_datadir}/icons/hicolor/scalable/apps"
|
|
|
|
|
|
|
|
%files
|
|
|
|
%license LICENSE
|
|
|
|
%doc CONTRIBUTING.md README.md RELEASE.md
|
|
|
|
%{_bindir}/%{name}
|
|
|
|
%{_datadir}/icons/*
|
|
|
|
%{_datadir}/applications/*
|
|
|
|
|
|
|
|
%changelog
|