From 35df9d8477b04fa0764fb1628f156956b4f7de52 Mon Sep 17 00:00:00 2001 From: Silvan Calarco Date: Sat, 6 Jan 2024 07:01:01 +0100 Subject: [PATCH] package created using the webbuild interface [release 20191027git-1mamba;Sun Oct 27 2019] --- README.md | 2 ++ mbrola-voices.spec | 45 +++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 47 insertions(+) create mode 100644 mbrola-voices.spec diff --git a/README.md b/README.md index 9ff6e8e..493c58c 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,4 @@ # mbrola-voices +Data files of mbrola speech synthesizer voices. + diff --git a/mbrola-voices.spec b/mbrola-voices.spec new file mode 100644 index 0000000..e76cda7 --- /dev/null +++ b/mbrola-voices.spec @@ -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 +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 20191027git-1mamba +- package created using the webbuild interface