]> git.pld-linux.org Git - packages/conspy.git/blame - conspy.spec
- init PLD spec
[packages/conspy.git] / conspy.spec
CommitLineData
e7f1cb68 1Summary: Conspy - remote control of Linux virtual consoles
2Name: conspy
3Version: 1.2
4Release: 0.1
5License: GPL
6Group: Applications
7Source0: http://ace-host.stuart.id.au/russell/files/conspy/%{name}-%{version}.tar.bz2
8# Source0-md5: dffa52755840187958adba42915a57d6
9URL: http://ace-host.stuart.id.au/russell/files/conspy/
10BuildRequires: autoconf
11BuildRequires: automake
12BuildRequires: ncurses-devel
13BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
14
15%description
16Conspy allows a (possibly remote) user to see what is displayed on a
17Linux virtual console, and send keystrokes to it. It only works with
18Linux, as far as I know.
19
20It is rather like VNC, but where VNC takes control of a GUI conspy
21takes control of a text mode virtual console. Unlike VNC, conspy does
22not require a server to be installed prior to being used.
23
24%prep
25%setup -q
26
27%build
28%{__aclocal}
29%{__autoconf}
30%{__automake}
31
32%configure \
33 CFLAGS="%{rpmcflags} -I/usr/include/ncurses"
34%{__make}
35
36%install
37rm -rf $RPM_BUILD_ROOT
38
39%{__make} install \
40 DESTDIR=$RPM_BUILD_ROOT
41
42%clean
43rm -rf $RPM_BUILD_ROOT
44
45%files
46%defattr(644,root,root,755)
47%doc AUTHORS ChangeLog NEWS README
48%attr(755,root,root) %{_bindir}/conspy
49%{_mandir}/man1/*
This page took 0.05936 seconds and 4 git commands to generate.