Logoj0ke.net Open Build Service > Projects > server:telephony > asterisk-flite > Changes
Sign Up | Log In

Changes of Revision 2

[-] Added asterisk-flite.spec
x
 
1
@@ -0,0 +1,76 @@
2
+Name:           asterisk-flite
3
+Version:        0.5
4
+Release:        1%{?dist}
5
+Summary:        Flite text-to-speech module for Asterisk
6
+
7
+Group:          Applications/Internet
8
+License:        GPL
9
+URL:            http://dialogpalette.sourceforge.net
10
+Source0:        ttp://prdownloads.sourceforge.net/dialogpalette/%{name}-%{version}.tar.gz
11
+BuildRoot:      %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
12
+
13
+BuildRequires:  flite-devel asterisk-devel >= 1.4 spandsp curl
14
+
15
+%description
16
+This provides the "Flite" dialplan application for the Asterisk Open Source
17
+PBX, which allows you to use the CMU Flite text-to-speech engine with Asterisk.
18
+
19
+The application uses the exact same syntax as the standard "Festival" Asterisk
20
+application.
21
+
22
+
23
+%prep
24
+%setup -q
25
+
26
+
27
+%build
28
+export ASTERISKMODDIR=%{_libdir}/asterisk/modules
29
+make %{?_smp_mflags} 
30
+
31
+
32
+%install
33
+rm -rf $RPM_BUILD_ROOT
34
+mkdir -p $RPM_BUILD_ROOT%{_libdir}/asterisk/modules
35
+mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/asterisk
36
+make install DESTDIR=$RPM_BUILD_ROOT ASTERISKMODDIR=%{_libdir}/asterisk/modules
37
+
38
+
39
+%clean
40
+rm -rf $RPM_BUILD_ROOT
41
+
42
+
43
+%files
44
+%defattr(-,root,root,-)
45
+%doc AUTHORS ChangeLog COPYING README
46
+%{_libdir}/asterisk/modules/app_flite.so
47
+%config(noreplace) %{_sysconfdir}/asterisk/flite.conf
48
+
49
+
50
+%changelog
51
+* Thu Jan 11 2007 Francois Aucamp <faucamp@csir.co.za> - 0.5-1
52
+- New version: 0.5
53
+- Package name changed to asterisk-flite
54
+- Cleand up spec file
55
+- Added BuildRequires: asterisk-devel >= 1.4
56
+- Removed unnecessary Requires entries
57
+- Config file and AUTHORS added to files list
58
+- Rebuilt for Asterisk 1.4
59
+
60
+* Tue May 16 2006 Francois Aucamp <faucamp@csir.co.za> - 0.3-2
61
+- Remove asterisk and asterisk-devel depencies
62
+- Above done to allow building/installing against tarball Asterisk versions
63
+
64
+* Sun May 07 2006 Francois Aucamp <faucamp@csir.co.za> - 0.3-1
65
+- New version: 0.3
66
+- Upstream application split: old app_flite is now known as app_flite-network
67
+- Adjusted requirements due to change in application
68
+- Added ChangeLog as "doc" to "files" section
69
+- Cleaned up spec file
70
+
71
+* Tue Apr 25 2006 Francois Aucamp <faucamp@csir.co.za> - 0.2-1
72
+- Upgraded to version 0.2
73
+- Modified spec file to allow multiple distribution-build from single source rpm
74
+- Rebuilt for Fedora Core 4 and 5, Asterisk 1.2.x
75
+
76
+* Fri Feb 24 2006 Francois Aucamp <faucamp@csir.co.za> - 0.1-1
77
+- Initial build for Fedora Core 4 and Asterisk 1.2.x
78