new packages: pocketsphinks, subtitlecomposer
This commit is contained in:
@@ -0,0 +1,25 @@
|
||||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Licensed under the GNU General Public License, version 3.
|
||||
# See the file http://www.gnu.org/licenses/gpl.txt
|
||||
|
||||
from pisi.actionsapi import shelltools
|
||||
from pisi.actionsapi import cmaketools
|
||||
from pisi.actionsapi import pisitools
|
||||
from pisi.actionsapi import get
|
||||
|
||||
def setup():
|
||||
shelltools.makedirs("build")
|
||||
shelltools.cd("build")
|
||||
|
||||
cmaketools.configure(sourceDir="..")
|
||||
|
||||
def build():
|
||||
cmaketools.make("-C build")
|
||||
|
||||
def install():
|
||||
pisitools.dodoc("README.md", "LICENSE")
|
||||
|
||||
shelltools.cd("build")
|
||||
cmaketools.rawInstall("DESTDIR=%s" % get.installDIR())
|
||||
@@ -0,0 +1,69 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>pocketsphinx</Name>
|
||||
<Homepage>https://cmusphinx.sourceforge.net/</Homepage>
|
||||
<Packager>
|
||||
<Name>Kamil Atlı</Name>
|
||||
<Email>suvari@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>asis</License>
|
||||
<IsA>library</IsA>
|
||||
<Icon>nemo</Icon>
|
||||
<Summary>A small speech recognizer</Summary>
|
||||
<Description>This is PocketSphinx, one of Carnegie Mellon University's open source large vocabulary, speaker-independent continuous speech recognition engines.</Description>
|
||||
<Archive sha1sum="50d6d103444fbee2f17abd20fb39ab2b1333ac73" type="targz">https://github.com/cmusphinx/pocketsphinx/archive/refs/tags/v5.0.0.tar.gz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>cmake</Dependency>
|
||||
<Dependency>cython3</Dependency>
|
||||
<Dependency>python3-devel</Dependency>
|
||||
<Dependency>python3-pytest</Dependency>
|
||||
<Dependency>gstreamer-devel</Dependency>
|
||||
<Dependency>python3-setuptools</Dependency>
|
||||
<Dependency>gst-plugins-base-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
<Patches>
|
||||
<!-- <Patch level="1"></Patch> -->
|
||||
</Patches>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>pocketsphinx</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>gstreamer</Dependency>
|
||||
<Dependency>gst-plugins-base</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="data">/usr/share/pocketsphinx/model</Path>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="library">/usr/lib/libpocketsphinx.a</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
<Path fileType="man">/usr/share/man</Path>
|
||||
</Files>
|
||||
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>pocketsphinx-devel</Name>
|
||||
<Summary>Development files for pocketsphinx</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="current">pocketsphinx</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="header">/usr/include</Path>
|
||||
<Path fileType="library">/usr/lib/pkgconfig</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
|
||||
<History>
|
||||
<Update release="1">
|
||||
<Date>2023-02-01</Date>
|
||||
<Version>5.0.0</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>Kamil Atlı</Name>
|
||||
<Email>suvari@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,14 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>pocketsphinx</Name>
|
||||
<Summary xml:lang="tr">Küçük bir konuşma tanıyıcı</Summary>
|
||||
<Description xml:lang="tr">PocketSphinx, Carnegie Mellon Üniversitesi'nin açık kaynaklı geniş kelime dağarcığı, konuşmacıdan bağımsız sürekli konuşma tanıma motorlarından biridir.</Description>
|
||||
<Description xml:lang="fr">Il s'agit de PocketSphinx, l'un des moteurs de reconnaissance vocale continue à large vocabulaire open source de l'Université Carnegie Mellon.</Description>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>pocketsphinx-devel</Name>
|
||||
<Summary xml:lang="tr">pocketsphinx için geliştirme dosyaları</Summary>
|
||||
</Package>
|
||||
</PISI>
|
||||
Reference in New Issue
Block a user