summaryrefslogtreecommitdiff
path: root/python-kaldi-io.spec
diff options
context:
space:
mode:
authorCoprDistGit <infra@openeuler.org>2023-04-11 11:48:57 +0000
committerCoprDistGit <infra@openeuler.org>2023-04-11 11:48:57 +0000
commit3822606c5f8f7d840a4a139ac376d785b72ac148 (patch)
tree8781412c6f2a9da35b2969f5220c50d9bc08471a /python-kaldi-io.spec
parentf8cbe771dce10527e7c5bbce2715146fd5d8e41d (diff)
automatic import of python-kaldi-io
Diffstat (limited to 'python-kaldi-io.spec')
-rw-r--r--python-kaldi-io.spec73
1 files changed, 73 insertions, 0 deletions
diff --git a/python-kaldi-io.spec b/python-kaldi-io.spec
new file mode 100644
index 0000000..751bc49
--- /dev/null
+++ b/python-kaldi-io.spec
@@ -0,0 +1,73 @@
+%global _empty_manifest_terminate_build 0
+Name: python-kaldi-io
+Version: 0.9.5
+Release: 1
+Summary: Glue code connecting Kaldi data and Python.
+License: Apache Software License
+URL: https://github.com/vesis84/kaldi-io-for-python
+Source0: https://mirrors.nju.edu.cn/pypi/web/packages/33/f0/b3b9403f2df0ac19f80fef0e77940a302893f8d54813d21b73defcc490ba/kaldi_io-0.9.5.tar.gz
+BuildArch: noarch
+
+Requires: python3-numpy
+
+%description
+
+
+%package -n python3-kaldi-io
+Summary: Glue code connecting Kaldi data and Python.
+Provides: python-kaldi-io
+BuildRequires: python3-devel
+BuildRequires: python3-setuptools
+BuildRequires: python3-pip
+%description -n python3-kaldi-io
+
+
+%package help
+Summary: Development documents and examples for kaldi-io
+Provides: python3-kaldi-io-doc
+%description help
+
+
+%prep
+%autosetup -n kaldi-io-0.9.5
+
+%build
+%py3_build
+
+%install
+%py3_install
+install -d -m755 %{buildroot}/%{_pkgdocdir}
+if [ -d doc ]; then cp -arf doc %{buildroot}/%{_pkgdocdir}; fi
+if [ -d docs ]; then cp -arf docs %{buildroot}/%{_pkgdocdir}; fi
+if [ -d example ]; then cp -arf example %{buildroot}/%{_pkgdocdir}; fi
+if [ -d examples ]; then cp -arf examples %{buildroot}/%{_pkgdocdir}; fi
+pushd %{buildroot}
+if [ -d usr/lib ]; then
+ find usr/lib -type f -printf "/%h/%f\n" >> filelist.lst
+fi
+if [ -d usr/lib64 ]; then
+ find usr/lib64 -type f -printf "/%h/%f\n" >> filelist.lst
+fi
+if [ -d usr/bin ]; then
+ find usr/bin -type f -printf "/%h/%f\n" >> filelist.lst
+fi
+if [ -d usr/sbin ]; then
+ find usr/sbin -type f -printf "/%h/%f\n" >> filelist.lst
+fi
+touch doclist.lst
+if [ -d usr/share/man ]; then
+ find usr/share/man -type f -printf "/%h/%f.gz\n" >> doclist.lst
+fi
+popd
+mv %{buildroot}/filelist.lst .
+mv %{buildroot}/doclist.lst .
+
+%files -n python3-kaldi-io -f filelist.lst
+%dir %{python3_sitelib}/*
+
+%files help -f doclist.lst
+%{_docdir}/*
+
+%changelog
+* Tue Apr 11 2023 Python_Bot <Python_Bot@openeuler.org> - 0.9.5-1
+- Package Spec generated