package created using the webbuild interface [release 20191027git-1mamba;Sun Oct 27 2019]

This commit is contained in:
Silvan Calarco 2024-01-06 07:01:01 +01:00
parent ea094c2159
commit 35df9d8477
2 changed files with 47 additions and 0 deletions

View File

@ -1,2 +1,4 @@
# mbrola-voices
Data files of mbrola speech synthesizer voices.

45
mbrola-voices.spec Normal file
View File

@ -0,0 +1,45 @@
Name: mbrola-voices
Version: 20191027git
Release: 1mamba
Summary: Data files of mbrola speech synthesizer voices
Group: System/Multimedia
Vendor: openmamba
Distribution: openmamba
Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
URL: https://github.com/numediart/MBROLA-voices.git
## GITSOURCE https://github.com/numediart/MBROLA-voices.git master
Source: https://github.com/numediart/MBROLA-voices.git/master/MBROLA-voices-%{version}.tar.bz2
License: Affero GNU Public License
## AUTOBUILDREQ-BEGIN
## AUTOBUILDREQ-END
BuildArch: noarch
Requires: mbrola
BuildRoot: %{_tmppath}/%{name}-%{version}-root
%description
Data files of mbrola speech synthesizer voices.
%prep
%setup -q -n MBROLA-voices-%{version}
%build
%install
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
install -d -m0755 %{buildroot}%{_datadir}/mbrola
cd data
cp -a en1 it3 it4 %{buildroot}%{_datadir}/mbrola/
%clean
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
%files
%defattr(-,root,root)
%lang(en) %{_datadir}/mbrola/en1
%lang(it) %{_datadir}/mbrola/it3
%lang(it) %{_datadir}/mbrola/it4
%doc LICENSE.md
%changelog
* Sun Oct 27 2019 Silvan Calarco <silvan.calarco@mambasoft.it> 20191027git-1mamba
- package created using the webbuild interface