aboutsummaryrefslogtreecommitdiffstats
path: root/piper-tts
diff options
context:
space:
mode:
authorDanilo M. <danix@danix.xyz>2026-08-14 12:01:35 +0200
committerDanilo M. <danix@danix.xyz>2026-08-14 12:01:35 +0200
commit6cc28c4481561d60bbb709c614080cafd1daf6a7 (patch)
tree074799aba8eb5fe78200d9c7c001bcecf0d60913 /piper-tts
parent8ab2415e4562bf7b1bda15ed835efcced89c0b69 (diff)
downloadmy-slackbuilds-6cc28c4481561d60bbb709c614080cafd1daf6a7.tar.gz
my-slackbuilds-6cc28c4481561d60bbb709c614080cafd1daf6a7.zip
piper-tts: add version 1.6.1
Diffstat (limited to 'piper-tts')
-rw-r--r--piper-tts/README13
-rw-r--r--piper-tts/piper-tts.SlackBuild82
-rw-r--r--piper-tts/piper-tts.info10
-rw-r--r--piper-tts/slack-desc19
4 files changed, 124 insertions, 0 deletions
diff --git a/piper-tts/README b/piper-tts/README
new file mode 100644
index 0000000..0a2ab1a
--- /dev/null
+++ b/piper-tts/README
@@ -0,0 +1,13 @@
+piper-tts is a fast and local neural text-to-speech engine that embeds
+espeak-ng for phonemization. It runs entirely on-device with no network
+access. Voices are ONNX models.
+
+This package installs the prebuilt manylinux x86_64 wheel from upstream
+releases. The console script is renamed from 'piper' to 'piper-tts' to
+avoid clashing with the SBo 'piper' (libratbag mouse tool).
+
+Runtime dependencies (packaged separately):
+ python3-onnxruntime
+ python3-pathvalidate
+
+Homepage: https://github.com/OHF-voice/piper1-gpl
diff --git a/piper-tts/piper-tts.SlackBuild b/piper-tts/piper-tts.SlackBuild
new file mode 100644
index 0000000..897fb04
--- /dev/null
+++ b/piper-tts/piper-tts.SlackBuild
@@ -0,0 +1,82 @@
+#!/bin/bash
+
+# Slackware build script for piper-tts
+
+# Copyright 2026 danix <danix@danix.xyz>
+# All rights reserved.
+#
+# Redistribution and use of this script, with or without modification, is
+# permitted provided that the following conditions are met:
+#
+# 1. Redistributions of this script must retain the above copyright
+# notice, this list of conditions and the following disclaimer.
+#
+# THIS SOFTWARE IS PROVIDED BY THE AUTHOR "AS IS" AND ANY EXPRESS OR IMPLIED
+# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
+# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
+# EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
+# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
+# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
+# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
+# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+cd $(dirname $0) ; CWD=$(pwd)
+
+PRGNAM=piper-tts
+VERSION=${VERSION:-1.6.1}
+BUILD=${BUILD:-1}
+TAG=${TAG:-_SBo}
+PKGTYPE=${PKGTYPE:-tgz}
+
+SRCNAM=piper_tts
+
+ARCH=${ARCH:-x86_64}
+
+# Only x86_64 is supported (pre-built manylinux wheel)
+if [ "$ARCH" != "x86_64" ]; then
+ echo "ERROR: $PRGNAM is only available for x86_64."
+ exit 1
+fi
+
+if [ ! -z "${PRINT_PACKAGE_NAME}" ]; then
+ echo "$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE"
+ exit 0
+fi
+
+TMP=${TMP:-/tmp/SBo}
+PKG=$TMP/package-$PRGNAM
+OUTPUT=${OUTPUT:-/tmp}
+
+set -e
+
+rm -rf $PKG
+mkdir -p $TMP $PKG $OUTPUT
+
+python3 -m installer --destdir "$PKG" \
+ "$CWD/$SRCNAM-$VERSION-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl"
+
+# Rename the console script to avoid clashing with SBo's libratbag 'piper'
+mv $PKG/usr/bin/piper $PKG/usr/bin/piper-tts
+
+# The wheel's data/COPYING installs to the prefix root; the license is
+# already copied to /usr/doc from dist-info/licenses, so drop the stray copy.
+rm -f $PKG/usr/COPYING
+
+find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \
+ | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true
+
+mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
+# Copy license files from the wheel's dist-info
+for lic in \
+ $PKG/usr/lib64/python3*/site-packages/$SRCNAM-$VERSION.dist-info/licenses/* ; do
+ [ -e "$lic" ] && cp -a "$lic" $PKG/usr/doc/$PRGNAM-$VERSION
+done
+cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
+
+mkdir -p $PKG/install
+cat $CWD/slack-desc > $PKG/install/slack-desc
+
+cd $PKG
+/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE
diff --git a/piper-tts/piper-tts.info b/piper-tts/piper-tts.info
new file mode 100644
index 0000000..18a8275
--- /dev/null
+++ b/piper-tts/piper-tts.info
@@ -0,0 +1,10 @@
+PRGNAM="piper-tts"
+VERSION="1.6.1"
+HOMEPAGE="https://github.com/OHF-voice/piper1-gpl"
+DOWNLOAD="UNSUPPORTED"
+MD5SUM=""
+DOWNLOAD_x86_64="https://github.com/OHF-Voice/piper1-gpl/releases/download/v1.6.1/piper_tts-1.6.1-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl"
+MD5SUM_x86_64="98aeaa88247b4e2aa6f7e86d0e829873"
+REQUIRES="python3-onnxruntime python3-pathvalidate"
+MAINTAINER="danix"
+EMAIL="danix@danix.xyz"
diff --git a/piper-tts/slack-desc b/piper-tts/slack-desc
new file mode 100644
index 0000000..e07359e
--- /dev/null
+++ b/piper-tts/slack-desc
@@ -0,0 +1,19 @@
+# HOW TO EDIT THIS FILE:
+# The "handy ruler" below makes it easier to edit a package description.
+# Line up the first '|' above the ':' following the base package name, and
+# the '|' on the right side marks the last column you can put a character in.
+# You must make exactly 11 lines for the formatting to be correct. It's also
+# customary to leave one space after the ':' except on otherwise blank lines.
+
+ |-----handy-ruler------------------------------------------------------|
+piper-tts: piper-tts (fast local neural text-to-speech engine)
+piper-tts:
+piper-tts: A fast and local neural text-to-speech engine that embeds
+piper-tts: espeak-ng for phonemization. Runs entirely on-device with no
+piper-tts: network access. Voices are ONNX models.
+piper-tts:
+piper-tts: The console script is installed as 'piper-tts' to avoid clashing
+piper-tts: with the SBo 'piper' (libratbag mouse tool).
+piper-tts:
+piper-tts: Homepage: https://github.com/OHF-voice/piper1-gpl
+piper-tts: