]> git.pld-linux.org Git - packages/OSPToolkit.git/blob - OSPToolkit.spec
- new
[packages/OSPToolkit.git] / OSPToolkit.spec
1 Summary:        Implementation of the ETSI OSP VoIP Peering protocol
2 Name:           OSPToolkit
3 Version:        3.3.6
4 Release:        1
5 License:        BSD
6 Group:          Libraries
7 Source0:        http://dl.sourceforge.net/osp-toolkit/%{name}-%{version}.tar.gz
8 # Source0-md5:  b77f6dd9cd6f84c28433f8dbd7d093a5
9 URL:            http://www.transnexus.com/OSP%20Toolkit/OSP%20Toolkit.htm
10 BuildRequires:  openssl-devel
11 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
12
13 %description
14 The OSP Toolkit is a complete development kit for software developers
15 who want to implement the client side of the European
16 Telecommunication Standards Institute's (ETSI) OSP standard for secure
17 VoIP peering. The OSP Toolkit includes source code written in ANSI C,
18 test tools and extensive documentation on how to implement the OSP
19 peering protocl standard.
20
21 %prep
22 %setup -q -n TK-3_3_6-20060303
23
24 %build
25 %{__make} -C src build \
26         CC="%{__cc}" \
27         GCCFLAGS="-Wall -D_GNU_SOURCE -fPIC %{rpmcflags}"
28
29 %install
30 rm -rf $RPM_BUILD_ROOT
31
32 install -d $RPM_BUILD_ROOT{%{_includedir},%{_libdir}}
33
34 cp -a include/osp $RPM_BUILD_ROOT%{_includedir}
35 install lib/*.a $RPM_BUILD_ROOT%{_libdir}
36
37 %clean
38 rm -rf $RPM_BUILD_ROOT
39
40 %post   -p /sbin/ldconfig
41 %postun -p /sbin/ldconfig
42
43 %files
44 %defattr(644,root,root,755)
45 %doc *.txt
46 %{_libdir}/lib*.a
47 %{_includedir}/osp
This page took 0.074342 seconds and 3 git commands to generate.