source: projects/specs/trunk/x/xclip/xclip-vl.spec @ 10743

Revision 10743, 2.0 KB checked in by ara_t, 8 years ago (diff)

first commit

Line 
1%define pkg_name    xclip
2%define pkg_version 0.12
3%define pkg_release 1%{?_dist_release}
4
5Summary:     A command line interface to X selections ("the clipboard")
6Summary(ja): Xセレクション(クリップボード)へのコマンドラインインターフェイス
7Name:    %{pkg_name}
8Version: %{pkg_version}
9Release: %{pkg_release}
10
11License: GPLv2
12Group:   Applications/Accessories
13URL:     https://github.com/astrand/xclip
14Source0: %{name}-%{version}.tar.gz
15
16BuildRoot: %{_tmppath}/%{name}-%{version}-root
17BuildRequires: xorg-x11-devel
18
19Vendor: Project Vine
20Distribution: Vine Linux
21Packager: ara_t
22
23
24%description
25xclip is a command line utility that is designed to run on any system with an
26X11 implementation. It provides an interface to X selections ("the clipboard")
27from the command line. It can read data from standard in or a file and place it
28in an X selection for pasting into other X applications. xclip can also print
29an X selection to standard out, which can then be redirected to a file or
30another program.
31
32%description -l ja
33xclipは、X11の実装を持つあらゆるシステム上で起動するように設計された
34コマンドラインユーティリティです。Xセレクション("クリップボード")への
35コマンドラインからのインターフェイスを提供します。標準入力やファイルから
36データを読み込み、他のXアプリケーションにペーストするために、
37Xセレクション中に内容を配置できます。xclip は、標準出力にXセレクションを
38出力できますので、ファイルや他のプログラムにリダイレクトできます。
39
40
41%prep
42%{__rm} -rf ${RPM_BUILD_ROOT}
43%setup -q
44./bootstrap
45%{configure} --with-x
46
47%build
48%{__make} %{?_smp_mflags}
49
50%install
51%{make_install}
52
53%clean
54%{__rm} -rf ${RPM_BUILD_ROOT}
55
56
57%files
58%defattr(-, root, root)
59%doc COPYING ChangeLog README
60%{_bindir}/
61%{_mandir}/
62
63
64%changelog
65* Mon Aug 01 2016 Toshiaki Ara <ara_t@384.jp> 0.12-1
66- new package
Note: See TracBrowser for help on using the repository browser.