Marcus Meissner
24887035ba
OBS-URL: https://build.opensuse.org/request/show/578641 OBS-URL: https://build.opensuse.org/package/show/Base:System/fzy?expand=0&rev=1
51 lines
1.6 KiB
RPMSpec
51 lines
1.6 KiB
RPMSpec
#
|
|
# spec file for package fzy
|
|
#
|
|
# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
|
|
#
|
|
# 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 http://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
Name: fzy
|
|
Version: 0.9
|
|
Release: 0
|
|
Summary: A fuzzy text selector
|
|
License: MIT
|
|
Group: Productivity/Text/Utilities
|
|
URL: https://github.com/jhawthorn/fzy
|
|
Source: https://github.com/jhawthorn/%{name}/archive/%{version}.tar.gz#/%{name}-%{version}.tar.gz
|
|
BuildRequires: automake
|
|
|
|
%description
|
|
fzy can be used to filter any list: files, command history, processes,
|
|
hostnames, bookmarks, git commits, etc. It's designed to be used both as an
|
|
editor plugin and on the command line. Rather than clearing the screen, fzy
|
|
displays its interface directly below the current cursor position, scrolling
|
|
the screen if necessary.
|
|
|
|
%prep
|
|
%setup -q
|
|
|
|
%build
|
|
make %{?_smp_mflags}
|
|
|
|
%install
|
|
make install PREFIX=%{buildroot}%{_prefix} %{?_smp_mflags}
|
|
|
|
%files
|
|
%doc CHANGELOG.md README.md LICENSE
|
|
%{_bindir}/fzy
|
|
%{_mandir}/man1/fzy.1%{ext_man}
|
|
|
|
%changelog
|