-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathvic.spec
58 lines (48 loc) · 1.34 KB
/
vic.spec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
%define name vic
%define version 2.8ucl1.1.5
%define release ipv6
Name: %{name}
Summary: Video Conferencing Tool
Version: %{version}
Release: %{release}
Group: Applications/Internet
Copyright: Copyright (c) 1995-2003 University College London
URL: http://www-mice.cs.ucl.ac.uk/multimedia/software/%{name}/
Source: http://www-mice.cs.ucl.ac.uk/multimedia/software/%{name}/releases/%{version}/%{name}-%{version}.tar.gz
BuildRoot: %{_tmppath}/%{name}-root
%description
VIC is a real-time, multimedia application for video
conferencing over the Internet. It was developed by
the Network Research Group at the Lawrence Berkeley
National Laboratory in collaboration with the
University of California, Berkeley.
See http://www-mice.cs.ucl.ac.uk/multimedia/software/vic
%prep
%setup -q
%build
cd tcl-8.0/unix
%configure
make
cd ../../tk-8.0/unix
%configure
make
cd ../../common
%configure --enable-ipv6
make
cd ../vic
%configure --sysconfdir=/etc --mandir=%{_mandir} --enable-ipv6
make
%install
rm -rf $RPM_BUILD_ROOT
install -d $RPM_BUILD_ROOT{/usr/bin,%{_mandir}/man1}
install -m755 -s vic/vic $RPM_BUILD_ROOT/usr/bin/vic
install -m644 vic/vic.1 $RPM_BUILD_ROOT%{_mandir}/man1/vic.1
%clean
rm -rf $RPM_BUILD_ROOT
%files
%defattr(-,root,root)
%{_prefix}/bin/*
%{_mandir}/*/*
%changelog
* Fri Apr 25 2003 Kristian Hasler <k.hasler@cs.ucl.ac.uk>
- initial build