]> git.pld-linux.org Git - packages/conspy.git/blob - conspy.spec
- init PLD spec
[packages/conspy.git] / conspy.spec
1 Summary:        Conspy - remote control of Linux virtual consoles
2 Name:           conspy
3 Version:        1.2
4 Release:        0.1
5 License:        GPL
6 Group:          Applications
7 Source0:        http://ace-host.stuart.id.au/russell/files/conspy/%{name}-%{version}.tar.bz2
8 # Source0-md5:  dffa52755840187958adba42915a57d6
9 URL:            http://ace-host.stuart.id.au/russell/files/conspy/
10 BuildRequires:  autoconf
11 BuildRequires:  automake
12 BuildRequires:  ncurses-devel
13 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
14
15 %description
16 Conspy allows a (possibly remote) user to see what is displayed on a
17 Linux virtual console, and send keystrokes to it. It only works with
18 Linux, as far as I know.
19
20 It is rather like VNC, but where VNC takes control of a GUI conspy
21 takes control of a text mode virtual console. Unlike VNC, conspy does
22 not 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
37 rm -rf $RPM_BUILD_ROOT
38
39 %{__make} install \
40         DESTDIR=$RPM_BUILD_ROOT
41
42 %clean
43 rm -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.059398 seconds and 4 git commands to generate.