]> git.pld-linux.org Git - packages/asterisk-skype.git/blob - asterisk-skype.spec
- config readable for asterisk group
[packages/asterisk-skype.git] / asterisk-skype.spec
1 %define         dl_url  http://downloads.digium.com/pub/telephony/skypeforasterisk/asterisk-%{asterisk_ver}/
2 %define         asterisk_ver    1.6.1
3 Summary:        Digium's Skype For Asterisk
4 Name:           asterisk-skype
5 Version:        1.0.6
6 Release:        1
7 License:        Proprietary
8 Group:          Applications/System
9 Source0:        %{dl_url}/x86-32/skypeforasterisk-%{asterisk_ver}_%{version}-x86_32.tar.gz
10 # NoSource0-md5:        956264998c994f184fc7310aae63d2d4
11 NoSource:       0
12 Source1:        %{dl_url}/x86-64/skypeforasterisk-%{asterisk_ver}_%{version}-x86_64.tar.gz
13 # NoSource1-md5:        18050344e5ed4edcf03953a863d248e7
14 NoSource:       1
15 URL:            http://www.digium.com/skype/
16 BuildRequires:  asterisk-devel >= %{asterisk_ver}
17 BuildRequires:  sed >= 4.0
18 Requires:       asterisk >= %{asterisk_ver}
19 Requires:       group(asterisk)
20 ExclusiveArch:  %{ix86} %{x8664}
21 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
22
23 %define         _sysconfdir     /etc/asterisk
24 %define         moduledir       %{_libdir}/asterisk/modules
25
26 %description
27 Skype For Asterisk (SFA) is the first and only native channel driver
28 to connect Asterisk to the Skype network. The channel driver supports
29 an unlimited number of simultaneous users and an unlimited number of
30 simultaneous calls per user (subject to license key restriction).
31
32 Please visit the following web address to read more about this product
33 and to purchase license keys: <http://www.digium.com/skype/>.
34
35 %prep
36 %ifarch %{ix86}
37 %setup -qT -n skypeforasterisk-%{asterisk_ver}_%{version}-x86_64 -b0
38 %endif
39 %ifarch %{x8664}
40 %setup -qT -n skypeforasterisk-%{asterisk_ver}_%{version}-x86_64 -b1
41 %endif
42
43 %{__sed} -i -e '
44 s,%{_prefix}/lib/asterisk,%{_libdir}/asterisk,
45         s,gcc,$(CC),g
46         s,-pipe -O3,$(CFLAGS),g
47 ' Makefile
48
49 %build
50 %{__make} \
51         CC="%{__cc}" \
52         CFLAGS="%{rpmcflags}"
53
54 %install
55 rm -rf $RPM_BUILD_ROOT
56 install -d $RPM_BUILD_ROOT{%{_bindir},%{moduledir}}
57 %{__make} install samples \
58         DESTDIR=$RPM_BUILD_ROOT
59
60 %clean
61 rm -rf $RPM_BUILD_ROOT
62
63 %files
64 %defattr(644,root,root,755)
65 %doc README chan_skype.conf.sample
66 %attr(640,root,asterisk) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/chan_skype.conf
67 %attr(755,root,root) %{moduledir}/chan_skype.so
68 %attr(755,root,root) %{moduledir}/res_skypeforasterisk.so
This page took 0.054099 seconds and 3 git commands to generate.