source: projects/specs/trunk/r/rlwrap/rlwrap-vl.spec @ 11178

Revision 11178, 1.9 KB checked in by ara_t, 7 years ago (diff)

rlwrap: update to 0.43

Line 
1%define pkg_name    rlwrap
2%define pkg_version 0.43
3%define pkg_release 1%{?_dist_release}
4
5Summary:     A wrapper that uses the GNU readline library to allow the editing of keyboard input
6Summary(ja): readline機能を持つコマンドラインラッパー
7Name:        %{pkg_name}
8Version:     %{pkg_version}
9Release:     %{pkg_release}
10
11License: GPLv2
12Group:   Applications/Other
13URL:     https://github.com/hanslub42/rlwrap
14SOURCE:  https://github.com/hanslub42/%{name}/releases/download/v%{version}/%{name}-%{version}.tar.gz
15BuildRoot: %{_tmppath}/%{name}-%{version}-root
16BuildRequires: readline-devel
17
18Vendor: Project Vine
19Distribution: Vine Linux
20Packager: ara_t
21
22
23%description
24rlwrap is a wrapper that uses the GNU readline library to allow
25the editing of keyboard input for any other command.
26Input history is kept between invocations, separately for each command;
27history completion and search work as in bash and completion word lists
28can be specified on the command line.
29
30%description -l ja
31rlwrapはGNU readlineライブラリを用いる小さなユーティリティを供給し、
32あらゆる他のコマンドへのキーボード入力の編集が可能です。
33コマンドそれぞれについて入力履歴が記録されます。
34bash と同様の履歴補完、検索機能、単語リストの補完のうち、
35どれを用いるかをコマンドライン上で指定可能です。
36
37
38%prep
39%{__rm} -rf ${RPM_BUILD_ROOT}
40%setup -q
41
42%build
43%{configure}
44%{__make} %{?_smp_mflags}
45
46%install
47%{make_install}
48
49%clean
50%{__rm} -rf ${RPM_BUILD_ROOT}
51
52
53%files
54%defattr(-, root, root)
55%doc AUTHORS BUGS ChangeLog COPYING NEWS PLEA README TODO
56%{_bindir}/
57%{_datadir}/rlwrap/
58%{_mandir}/man1/
59%{_mandir}/man3/
60
61
62%changelog
63* Thu Sep 14 2017 Toshiaki Ara <ara_t@384.jp> 0.42-1
64- new upstream release
65- change URL
66
67* Thu Apr 14 2016 Toshiaki Ara <ara_t@384.jp> 0.42-1
68- new package
Note: See TracBrowser for help on using the repository browser.