73 lines
1.7 KiB
RPMSpec
73 lines
1.7 KiB
RPMSpec
Name: vis
|
|
Version: 0.9
|
|
Release: %autorelease
|
|
Summary: A vim-like editor with structural regex from plan9
|
|
|
|
# The entire source code is ISC except for the following exceptions,
|
|
# that are also found in the LICENSE-file of the project:
|
|
# ./configure is MIT licensed
|
|
# map.c and map.h are under CC0
|
|
# libutf.c and libutf.h are MIT licensed
|
|
# sam.c and sam.h are under a ISC-like license
|
|
# All files under lua/lexers/ are MIT licensed
|
|
License: ISC AND MIT AND CC0-1.0
|
|
URL: https://git.sr.ht/~martanne/%{name}
|
|
Source0: https://git.sr.ht/~martanne/%{name}/archive/v%{version}.tar.gz
|
|
Patch0: vis-0.9-lua-5.5.patch
|
|
|
|
BuildRequires: make
|
|
BuildRequires: gcc
|
|
BuildRequires: pkgconfig(termkey)
|
|
BuildRequires: pkgconfig(ncursesw)
|
|
BuildRequires: pkgconfig(tre)
|
|
BuildRequires: pkgconfig(lua) >= 5.2
|
|
BuildRequires: libacl-devel
|
|
BuildRequires: pkgconfig(libselinux)
|
|
BuildRequires: lua-penlight
|
|
Requires: lua-lpeg >= 0.12
|
|
Requires: xsel
|
|
|
|
%description
|
|
A Vim-like editor with structural regular expressions
|
|
inspired by Plan9's Sam-editor.
|
|
|
|
%package doc
|
|
Summary: Docs for the Lua API of Vis
|
|
BuildRequires: lua-ldoc
|
|
Requires: %{name} = %{version}-%{release}
|
|
BuildArch: noarch
|
|
|
|
%description doc
|
|
%{summary}
|
|
|
|
%prep
|
|
%autosetup -n vis-v%{version} -p1
|
|
|
|
%build
|
|
%configure
|
|
%make_build
|
|
|
|
# create Lua API docs
|
|
%make_build luadoc-all
|
|
|
|
%install
|
|
%make_install
|
|
|
|
%files
|
|
%doc README.md
|
|
%license LICENSE
|
|
%{_bindir}/vis
|
|
%{_bindir}/vis-clipboard
|
|
%{_bindir}/vis-complete
|
|
%{_bindir}/vis-digraph
|
|
%{_bindir}/vis-menu
|
|
%{_bindir}/vis-open
|
|
%{_datadir}/%{name}
|
|
%{_mandir}/man1/%{name}*.1.*
|
|
%exclude %{_pkgdocdir}/LICENSE
|
|
|
|
%files doc
|
|
%doc lua/doc/index.html lua/doc/ldoc_fixed.css
|
|
|
|
%changelog
|
|
%autochangelog
|