]> git.pld-linux.org Git - packages/flite.git/commitdiff
- new, based on ALT Linux work
authortwittner <twittner@pld-linux.org>
Thu, 14 Sep 2006 18:52:38 +0000 (18:52 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    flite.spec -> 1.1

flite.spec [new file with mode: 0644]

diff --git a/flite.spec b/flite.spec
new file mode 100644 (file)
index 0000000..56c3a60
--- /dev/null
@@ -0,0 +1,123 @@
+#
+# NOTE:        - building is memory consuming (up to c.a. 537MB)
+# TODO:        - review -link,-alsa, version patches
+#      - --disable-static doesn't work
+#      - install manpages via makefile
+#
+# Conditional build:
+%bcond_without static_libs # don't pack static liraries
+#
+Name:          flite
+Version:       1.2
+Release:       0.1
+Summary:       flite - a small, fast speech synthesis engine
+Summary(ru_RU.KOI8-R):flite - ÍÁÌÅÎØËÏÅ, ÂÙÓÔÒÏÅ ÓÒÅÄÓÔ×Ï ÄÌÑ ÓÉÎÔÅÚÁ ÒÅÞÉ
+License:       Custom, see COPYING
+Group:         Applications/Sound
+Source0:       http://www.speech.cs.cmu.edu/flite/packed/flite-1.2/%{name}-%{version}-release.tar.bz2
+# Source0-md5: 24c1576f5b3eb23ecedf4bebde96710f
+# ALT Linux patches:
+Patch0:                %{name}-link.patch
+Patch1:                %{name}-alsa.patch
+Patch2:                %{name}-DESTDIR.patch
+Patch3:                %{name}-fix-readonly-assignments.patch
+# Debian patches:
+Patch4:                %{name}-doc.patch
+Patch5:                %{name}-version.patch
+URL:           http://cmuflite.org/
+BuildRequires: autoconf
+BuildRequires: automake
+BuildRequires: alsa-lib-devel
+BuildRoot:     %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
+
+%description
+Flite - a small, fast speech synthesis engine. It is the latest
+addition to the suite of free software synthesis tools including
+University of Edinburgh's Festival Speech Synthesis System and
+Carnegie Mellon University's FestVox project, tools, scripts and
+documentation for building synthetic voices. However, flite itself
+does not require either of these systems to compile and run.
+
+%description -l ru_RU.KOI8-R
+Flite -- ÍÁÌÅÎØËÏÅ, ÂÙÓÔÒÏÅ ÓÒÅÄÓÔ×Ï ÄÌÑ ÓÉÎÔÅÚÁ ÒÅÞÉ. üÔÏ ÐÏÓÌÅÄÎÅÅ
+ÄÏÂÁ×ÌÅÎÉÅ Ë ÎÁÂÏÒÕ Ó×ÏÂÏÄÎÏÇÏ ÐÒÏÇÒÁÍÍÎÏÇÏ ÏÂÅÓÐÅÞÅÎÉÑ ÄÌÑ ÓÉÎÔÅÚÁ
+ÒÅÞÉ, ÐÒÏÅËÔÙ FestVox É Festival. ïÄÎÁËÏ, ÓÁÍ flite ÎÅ ÔÒÅÂÕÅÔ ÎÉ
+ÏÄÎÏÇÏ ÉÚ ÜÔÉÈ ÐÁËÅÔÏ× ÄÌÑ ËÏÍÐÉÌÑÃÉÉ É ÚÁÐÕÓËÁ.
+
+%package devel
+Summary:       development files for flite
+Group:         Applications/Sound
+Requires:      %{name} = %{version}-%{release}
+
+%description devel
+development files for flite, a small, fast speech synthesis engine
+
+%description devel -l ru_RU.KOI8-R
+æÁÊÌÙ ÄÌÑ ÒÁÚÒÁÂÏÔËÉ Ó ÉÓÐÏÌØÚÏ×ÁÎÉÅÍ flite - ÍÁÌÅÎØËÏÇÏ, ÂÙÓÔÒÏÇÏ
+ÓÒÅÄÓÔ×Á ÄÌÑ ÓÉÎÔÅÚÁ ÒÅÞÉ.
+
+%package static
+Summary:       static development files for flite
+Group:         Applications/Sound
+Requires:      %{name}-devel = %{version}-%{release}
+
+%description static
+static development files for flite, a small, fast speech synthesis
+engine
+
+%description static -l ru_RU.KOI8-R
+óÔÁÔÉÞÅÓËÉÅ ÆÁÊÌÙ ÄÌÑ ÒÁÚÒÁÂÏÔËÉ Ó ÉÓÐÏÌØÚÏ×ÁÎÉÅÍ flite - ÍÁÌÅÎØËÏÇÏ,
+ÂÙÓÔÒÏÇÏ ÓÒÅÄÓÔ×Á ÄÌÑ ÓÉÎÔÅÚÁ ÒÅÞÉ.
+
+%prep
+%setup -qn %{name}-%{version}-release
+%patch0 -p1
+%patch1 -p1
+%patch2 -p1
+%patch3 -p1
+%patch4 -p1
+%patch5 -p1
+
+%build
+cp -f /usr/share/automake/config.sub .
+%{__autoconf}
+%configure \
+       --enable-shared \
+       %{!?with_static_libs:--disable-static} \
+       --with-vox=cmu_us_kal16
+
+%{__make}
+
+%install
+rm -rf $RPM_BUILD_ROOT
+# temp. workaround - put manpages in better place and install them via Makefile
+install -d $RPM_BUILD_ROOT%{_mandir}/man1
+
+%{__make} install \
+       DESTDIR=$RPM_BUILD_ROOT
+
+install debian/*.1 $RPM_BUILD_ROOT%{_mandir}/man1
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+%post  -p /sbin/ldconfig
+%postun        -p /sbin/ldconfig
+
+%files
+%defattr(644,root,root,755)
+%doc ACKNOWLEDGEMENTS README COPYING doc/html
+%attr(755,root,root) %{_bindir}/*
+%attr(755,root,root) %{_libdir}/lib*.so.*.*
+%{_mandir}/man1/*.1*
+
+%files devel
+%defattr(644,root,root,755)
+%{_includedir}/*
+%attr(755,root,root) %{_libdir}/lib*.so
+
+%if %{with static_libs}
+%files static
+%defattr(644,root,root,755)
+%{_libdir}/lib*.a
+%endif
This page took 0.080508 seconds and 4 git commands to generate.