source: projects/specs/branches/6/f/flite/flite-vl.spec @ 521

Revision 521, 5.5 KB checked in by daisuke, 14 years ago (diff)

import VineSeed package specs

Line 
1Name:           flite
2Version:        1.3
3Release:        16%{?_dist_release}
4Summary:        Small, fast speech synthesis engine (text-to-speech)
5Summary(ja):    合成音声出力の軽量高速エンジン
6
7Group:          Applications/Multimedia
8License:        MIT
9URL:            http://fife.speech.cs.cmu.edu/flite/
10Source0:        http://fife.speech.cs.cmu.edu/flite/packed/%{name}-%{version}/%{name}-%{version}-release.tar.gz
11Source1:        README-ALSA.txt
12Patch0:         flite-1.3-sharedlibs.patch
13Patch1:         flite-1.3-doc_texinfo.patch
14Patch2:         flite-1.3-alsa_support.patch
15BuildRoot:      %{_tmppath}/%{name}-%{version}-root
16BuildRequires:  ed alsa-lib-devel autoconf
17
18Distribution:     Vine Linux
19Vendor:           Project Vine
20
21%description
22Flite (festival-lite) is a small, fast run-time speech synthesis engine
23developed at CMU and primarily designed for small embedded machines and/or
24large servers. Flite is designed as an alternative synthesis engine to
25Festival for voices built using the FestVox suite of voice building tools.
26
27%description -l ja
28Flite (festival-lite) は、CMUで開発された軽量高速合成音声エンジンであり、
29小型組込マシンから大型サーバまで幅広く利用できるように設計されています。
30Fliteは、FestVox音声合成ツールによって作成されたFestivalの軽量高速版として
31設計されています。
32
33%package devel
34Summary: Development files for flite
35Summary: flite の開発用ファイル
36Group: Development/Libraries
37Requires: flite = %{version}-%{release}
38
39%description devel
40Development files for Flite, a small, fast speech synthesis engine.
41
42%description devel -l ja
43軽量高速合成音声エンジン Flite の開発用ファイルです。
44
45%prep
46%setup -q -n %{name}-%{version}-release
47%patch0 -p1 -b .flite-1.3-sharedlibs
48%patch1 -p1 -b .flite-1.3-doc_texinfo
49%patch2 -p1 -b .flite-1.3-alsa_support
50cp -p %{SOURCE1} .
51
52
53%build
54autoconf
55%configure --enable-shared --with-audio=alsa
56# This package fails parallel make (thus cannot be built using "_smp_flags")
57make
58
59%install
60rm -rf %{buildroot}
61make install INSTALLBINDIR=%{buildroot}%{_bindir} INSTALLLIBDIR=%{buildroot}%{_libdir}  INSTALLINCDIR=%{buildroot}%{_includedir}/flite
62
63
64%clean
65rm -rf %{buildroot}
66
67%post -p /sbin/ldconfig
68
69%postun -p /sbin/ldconfig
70
71
72%files
73%defattr(-,root,root,-)
74%doc ACKNOWLEDGEMENTS README COPYING README-ALSA.txt
75%{_bindir}/*
76%{_libdir}/*.so.*
77
78%files devel
79%defattr(-,root,root)
80%{_libdir}/*.so
81%{_includedir}/flite
82
83
84%changelog
85* Sun Aug 23 2009 Ryoichi INAGAKI <ryo1@bc.wakwak.com> - 1.3-16
86- added Japanese summary based on 1.3-0vl2 (VinePlus/4.0(extras))
87- merged changelog from 1.3-0vl2
88  * Mon Dec  4 2006 Susumu Tanimura <stanimura-ngs@umin.ac.jp>
89  - Rebuilt for VineLinux4.0
90  * Tue Nov 14 2006 Susumu Tanimura <stanimura-ngs@umin.ac.jp>
91  - Initial package for VineLinux3.2
92  - Refurbished this spec totally but two patches have been remained.
93
94* Sun Aug 23 2009 Ryoichi INAGAKI <ryo1@bc.wakwak.com> - 1.3-15
95- Initial build for Vine Linux
96
97* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.3-14
98- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
99
100* Sat Mar 21 2009 Robert Scheck <robert@fedoraproject.org> - 1.3-13
101- Removed moving of non-existing documentation flite directory
102
103* Tue Feb 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.3-12
104- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
105
106* Sat Oct 11 2008 Peter Lemenkov <lemenkov@gmail.com> - 1.3-11
107- Fix for RHEL 4
108 
109* Fri Jul 18 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 1.3-10
110- fix license tag
111
112* Mon Feb 18 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 1.3-9
113- Autorebuild for GCC 4.3
114
115* Tue Nov 14 2006 Francois Aucamp <faucamp@csir.co.za> - 1.3-8
116- Added comment to %%build stating why "_smp_flags" isn't used with make
117
118* Mon Nov 13 2006 Francois Aucamp <faucamp@csir.co.za> - 1.3-7
119- Modified alsa support patch file to patch "configure.in" instead of "configure"
120- Added "autoconf" step to %%build
121- Added BuildRequires: autoconf
122- Fixed patch backup file suffixes
123- Renamed patch files to a more standard format
124- Moved header files from /usr/include to /usr/include/flite
125- Added -p option to all cp operations (to preserve timestamps)
126
127* Sun Nov 12 2006 Francois Aucamp <faucamp@csir.co.za> - 1.3-6
128- Recreated patch to allow shared libraries to build correctly (sharedlibs.patch)
129- "flite" and "flite_time" binaries now link to flite shared libraries (sharedlibs.patch)
130- Simplified the documentation patch filename
131- Modified patch steps in %%prep to create backup files with different suffixes
132- Removed "_smp_flags" macro from %%build for all archs
133
134* Fri Oct 20 2006 Francois Aucamp <faucamp@csir.co.za> - 1.3-5
135- Modified "build" so that "_smp_flags" is only used for i386 arch
136
137* Mon Oct 10 2006 Francois Aucamp <faucamp@csir.co.za> - 1.3-4
138- Removed "_smp_flags" macro from "build" for x86_64 arch
139
140* Tue Sep 26 2006 Francois Aucamp <faucamp@csir.co.za> - 1.3-3
141- Added README-ALSA.txt (Source1)
142- Removed subpackage: flite-devel-static
143- Modified shared libraries patch (Patch0) to prevent building static libraries
144- Renamed patch files: Patch0, Patch1
145
146* Tue Sep 26 2006 Francois Aucamp <faucamp@csir.co.za> - 1.3-2
147- Added flite 1.3 ALSA patch (Patch2) by Lukas Loehrer - thanks Anthony Green for pointing it out
148- Added configure option: --with-audio=alsa
149- Added BuildRequires: alsa-lib-devel
150
151* Fri Sep 22 2006 Francois Aucamp <faucamp@csir.co.za> - 1.3-1
152- Initial RPM build
Note: See TracBrowser for help on using the repository browser.