xclip-vl.spec 2.0 KB

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