Fixed a stx err
[6bed4] / fedora / 6bed4.spec
1 Name:           6bed4
2 Version:        0.0.1
3 Release:        0.1%{?dist}
4 Summary:        IPv6 tunneling technique over UDP and IPv4
5
6 Group:          Applications/Internet
7 License:        BSD
8 URL:            http://devel.0cpm.org/6bed4/
9 Source0:        6bed4-%{version}.tar.bz2
10 BuildRoot:      %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX)
11
12 BuildRequires:  cmake
13
14 %description
15 Given the limited resources available to a lot of embedded systems,
16 dual-stack solutions are not always feasible for such hosts.  A
17 mechanism that supports a direct transition from IPv4-only to
18 IPv6-only may prove beneficial in getting the smallest hosts to make
19 a transition to IPv6 at a much earlier stage than would otherwise be
20 possible.  This calls for tunnels, but no current tunnel technique
21 appears to be optimal for embedded systems.
22
23 This specification details an IPv6 tunneling technique over UDP and
24 IPv4.  The technique is specifically designed to benefit embedded
25 systems, and to work without end user configuration.  The working
26 principle for obtaining a routable IPv6 address is through stateless
27 autoconfiguration from an anycast tunnel service.
28
29 %prep
30 %setup -q
31
32
33 %build
34 %cmake .
35 make %{?_smp_mflags}
36
37 %install
38 rm -rf $RPM_BUILD_ROOT
39 make install DESTDIR=$RPM_BUILD_ROOT
40
41
42 %clean
43 rm -rf $RPM_BUILD_ROOT
44
45
46 %files
47 %defattr(-,root,root,-)
48 %doc HISTORY LICENSE doc
49 %{_sbindir}/6bed4peer
50 %{_sbindir}/6bed4router
51 %{_mandir}/man8/*
52
53 %changelog
54 * Thu mar  8 2012 Rick van Rein
55 - rearranged command and man file names
56
57 * Sat Oct 22 2011 François Kooman - 0.0.1-0.1
58 - initial version
59
60