wok annotate espeak/receipt @ rev 23794

updated zopfli (1.0.2 -> 1.0.3)
author Hans-G?nter Theisgen
date Fri May 22 13:39:32 2020 +0100 (2020-05-22)
parents 55031da0f063
children 640a2eba2511
rev   line source
erjo@1464 1 # SliTaz package receipt.
erjo@1464 2
erjo@1464 3 PACKAGE="espeak"
Hans-G?nter@20889 4 VERSION="1.48.04"
pascal@1506 5 CATEGORY="misc"
Hans-G?nter@20889 6 TAGS="speech synthesis"
paul@4888 7 SHORT_DESC="Speech synthesizer."
erjo@1464 8 MAINTAINER="erjo@slitaz.org"
pascal@15588 9 LICENSE="GPL3"
Hans-G?nter@20889 10 WEB_SITE="https://espeak.sourceforge.io/"
Hans-G?nter@20889 11
erjo@1464 12 TARBALL="$PACKAGE-$VERSION-source.zip"
Hans-G?nter@20889 13 #WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
Hans-G?nter@20894 14 WGET_URL="https://sourceforge.net/projects/$PACKAGE/files/$PACKAGE/$PACKAGE-${VERSION%.*}/$TARBALL"
jozee@4935 15
pascal@15588 16 DEPENDS="portaudio jack-audio-connection-kit"
pascal@15588 17 BUILD_DEPENDS="$DEPENDS portaudio-dev jack-audio-connection-kit-dev"
Hans-G?nter@20889 18 HOST_ARCH="i486 arm"
pascal@15588 19
erjo@1464 20 # Rules to configure and make the package.
erjo@1464 21 compile_rules()
erjo@1464 22 {
paul@4888 23 cd $src/src
erjo@1464 24
erjo@1464 25 # Using portaudio v19
erjo@1464 26 cp portaudio19.h portaudio.h
erjo@1464 27
Hans-G?nter@20889 28 make -j 1 &&
Hans-G?nter@20889 29 make DESTDIR=$DESTDIR install
erjo@1464 30 }
erjo@1464 31
erjo@1464 32 # Rules to gen a SliTaz package suitable for Tazpkg.
erjo@1464 33 genpkg_rules()
erjo@1464 34 {
erjo@1464 35
paul@4888 36 mkdir -p $fs/usr/lib
pascal@15588 37 cp -a $install/usr/bin $fs/usr
pascal@15588 38 cp -a $install/usr/lib/*.so* $fs/usr/lib
pascal@15588 39 cp -a $install/usr/share $fs/usr
erjo@1464 40
erjo@1464 41 # Make symlink
slaxemulator@6313 42 #cd $fs/usr/lib
slaxemulator@6313 43 #ln -s libespeak.so.1.1.42 libespeak.so.1
erjo@1464 44 }