From 07ff2b90dfa80bd3931871a2393ee906277bd5c4 Mon Sep 17 00:00:00 2001 From: openmamba WebBuild System Date: Fri, 5 Jan 2024 19:34:00 +0100 Subject: [PATCH] package created by stefano using the webbuild interface [release 0.12-1mamba;Mon Dec 10 2012] --- README.md | 3 +++ xclip.spec | 45 +++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 48 insertions(+) create mode 100644 xclip.spec diff --git a/README.md b/README.md index a3c1b3c..292883b 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,5 @@ # xclip +xclip is a command line interface to the X11 clipboard. +It can also be used for copying files, as an alternative to sftp/scp, thus avoiding password prompts when X11 forwarding has already been setup. + diff --git a/xclip.spec b/xclip.spec new file mode 100644 index 0000000..d7fd6b0 --- /dev/null +++ b/xclip.spec @@ -0,0 +1,45 @@ +Name: xclip +Version: 0.12 +Release: 1mamba +Summary: A command line interface to the X11 clipboard +Group: Applications/Text +Vendor: openmamba +Distribution: openmamba +Packager: openmamba WebBuild System +URL: Applications/Text +Source: http://downloads.sourceforge.net/project/xclip/xclip/%{version}/xclip-%{version}.tar.gz +License: GPL +## AUTOBUILDREQ-BEGIN +BuildRequires: glibc-devel +BuildRequires: libX11-devel +BuildRequires: libXmu-devel +## AUTOBUILDREQ-END +BuildRoot: %{_tmppath}/%{name}-%{version}-root + +%description +xclip is a command line interface to the X11 clipboard. +It can also be used for copying files, as an alternative to sftp/scp, thus avoiding password prompts when X11 forwarding has already been setup. + +%prep +%setup -q + +%build +%configure +%make + +%install +[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" +%makeinstall + +%clean +[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" + +%files +%defattr(-,root,root) +%{_bindir}/%{name}* +%{_mandir}/man?/* +%doc ChangeLog COPYING README + +%changelog +* Mon Dec 10 2012 openmamba WebBuild System 0.12-1mamba +- package created by stefano using the webbuild interface