wok-next view espeak/receipt @ rev 20068

Up libcanberra (gtk2 and gtk3 support), vala (0.36.4), dconf (0.26.0), gucharmap3 (10.0.0), pycairo (1.15.3), pygobject3 (3.26.0), libgtop. Add dconf-editor, gtksourceview3.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Tue Oct 24 17:49:57 2017 +0300 (2017-10-24)
parents d6bd3fc6e0bd
children c4e53a39395a
line source
1 # SliTaz package receipt.
3 PACKAGE="espeak"
4 VERSION="1.45.05"
5 CATEGORY="misc"
6 SHORT_DESC="Speech synthesizer."
7 MAINTAINER="erjo@slitaz.org"
8 LICENSE="GPL3"
9 TARBALL="$PACKAGE-$VERSION-source.zip"
10 WEB_SITE="http://espeak.sourceforge.net/"
11 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
12 TAGS="speech synthesis"
13 HOST_ARCH="i486 arm"
15 DEPENDS="portaudio jack"
16 BUILD_DEPENDS="$DEPENDS portaudio-dev jack-dev"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 [ -d $src-source ] && mv $src-source $PACKAGE-$VERSION 2>/dev/null
22 cd $src/src
24 # Using portaudio v19
25 cp portaudio19.h portaudio.h
27 make && make DESTDIR=$DESTDIR install
28 }
30 # Rules to gen a SliTaz package suitable for Tazpkg.
31 genpkg_rules()
32 {
34 mkdir -p $fs/usr/lib
35 cp -a $install/usr/bin $fs/usr
36 cp -a $install/usr/lib/*.so* $fs/usr/lib
37 cp -a $install/usr/share $fs/usr
39 # Make symlink
40 #cd $fs/usr/lib
41 #ln -s libespeak.so.1.1.42 libespeak.so.1
42 }