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

Revision 10185, 1.8 KB checked in by ara_t, 8 years ago (diff)

initial commit

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