diff options
author | dscho <dscho> | 2004-06-07 17:52:42 +0000 |
---|---|---|
committer | dscho <dscho> | 2004-06-07 17:52:42 +0000 |
commit | cb3d612bb144baa125d13403c0be7488902fa4a4 (patch) | |
tree | 50ac7b16e93ee48658b67dfa27afced3718c1197 /LibVNCServer.spec.in | |
parent | 00901a2eb9ec569157fad8a531a1de037ac0e2de (diff) | |
download | libtdevnc-cb3d612bb144baa125d13403c0be7488902fa4a4.tar.gz libtdevnc-cb3d612bb144baa125d13403c0be7488902fa4a4.zip |
fix bug 968264: make rpm did not work with x11vnc package
Diffstat (limited to 'LibVNCServer.spec.in')
-rwxr-xr-x | LibVNCServer.spec.in | 58 |
1 files changed, 58 insertions, 0 deletions
diff --git a/LibVNCServer.spec.in b/LibVNCServer.spec.in new file mode 100755 index 0000000..5c51acc --- /dev/null +++ b/LibVNCServer.spec.in @@ -0,0 +1,58 @@ +# Note that this is NOT a relocatable package +Name: @PACKAGE@ +Version: @VERSION@ +Release: 1 +Summary: a library to make writing a vnc server easy +Copyright: GPL +Group: Libraries/Network +Packager: Johannes.Schindelin <Johannes.Schindelin@gmx.de> + +Source: %{name}-%{version}.tar.gz + +BuildRoot: %{_tmppath}/%{name}-%{version}-buildroot +Prefix: %{_prefix} + +%description +LibVNCServer makes writing a VNC server (or more correctly, a program +exporting a framebuffer via the Remote Frame Buffer protocol) easy. + +It is based on OSXvnc, which in turn is based on the original Xvnc by +ORL, later AT&T research labs in UK. + +It hides the programmer from the tedious task of managing clients and +compression schemata. + +LibVNCServer was put together and is (actively ;-) maintained by +Johannes Schindelin <Johannes.Schindelin@gmx.de> + +%prep +%setup -n %{name}-%{version} + + +%build +CFLAGS="$RPM_OPT_FLAGS" ./configure --prefix=%{prefix} + +make + + +%install +make install prefix=$RPM_BUILD_ROOT%{prefix} + +%clean +[ "$RPM_BUILD_ROOT" != "/" ] && rm -rf $RPM_BUILD_ROOT + + +%pre +%post +%preun +%postun + + +%files +%defattr(-,root,root) +%{prefix} + +%changelog +* Sun Feb 9 2003 Johannes Schindelin +- created libvncserver.spec.in + |