Browse Source

initial commit

git-svn-id: http://trac.vinelinux.org/repos/projects/specs@10185 ec354946-7b23-47d6-9f5a-488ba84defc7
ara_t 8 years ago
parent
commit
6997022ea8
1 changed files with 65 additions and 0 deletions
  1. 65 0
      r/rlwrap/rlwrap-vl.spec

+ 65 - 0
r/rlwrap/rlwrap-vl.spec

@@ -0,0 +1,65 @@
+%define pkg_name    rlwrap
+%define pkg_version 0.42
+%define pkg_release 1%{?_dist_release}
+
+Summary:     A wrapper that uses the GNU readline library to allow the editing of keyboard input
+Summary(ja): readline機能を持つコマンドラインラッパー
+Name:        %{pkg_name}
+Version:     %{pkg_version}
+Release:     %{pkg_release}
+
+License: GPLv2
+Group:   Applications/Other
+URL:     http://utopia.knoware.nl/~hlub/uck/rlwrap/
+SOURCE:  http://utopia.knoware.nl/~hlub/uck/rlwrap/%{name}-%{version}.tar.gz
+
+BuildRoot: %{_tmppath}/%{name}-%{version}-root
+BuildRequires: readline-devel
+
+Vendor: Project Vine
+Distribution: Vine Linux
+Packager: ara_t
+
+
+%description
+rlwrap is a wrapper that uses the GNU readline library to allow
+the editing of keyboard input for any other command.
+Input history is kept between invocations, separately for each command;
+history completion and search work as in bash and completion word lists
+can be specified on the command line.
+
+%description -l ja
+rlwrapはGNU readlineライブラリを用いる小さなユーティリティを供給し、
+あらゆる他のコマンドへのキーボード入力の編集が可能です。
+コマンドそれぞれについて入力履歴が記録されます。
+bash と同様の履歴補完、検索機能、単語リストの補完のうち、
+どれを用いるかをコマンドライン上で指定可能です。
+
+
+%prep
+%{__rm} -rf ${RPM_BUILD_ROOT}
+%setup -q
+
+%build
+%{configure}
+%{__make} %{?_smp_mflags}
+
+%install
+%{make_install}
+
+%clean
+%{__rm} -rf ${RPM_BUILD_ROOT}
+
+
+%files
+%defattr(-, root, root)
+%doc AUTHORS BUGS ChangeLog COPYING NEWS PLEA README TODO
+%{_bindir}/
+%{_datadir}/rlwrap/
+%{_mandir}/man1/
+%{_mandir}/man3/
+
+
+%changelog
+* Thu Apr 14 2016 Toshiaki Ara <ara_t@384.jp> 0.42-1
+- new package