wok annotate lpcnet/receipt @ rev 22704

updated etherape (0.9.14 -> 0.9.18)
author Hans-G?nter Theisgen
date Tue Jan 21 16:30:47 2020 +0100 (2020-01-21)
parents
children 5ea0ce1cecc0
rev   line source
pascal@21247 1 # SliTaz package receipt.
pascal@21247 2
pascal@21247 3 PACKAGE="lpcnet"
pascal@21247 4 VERSION="0.1"
pascal@21247 5 CATEGORY="development"
pascal@21247 6 SHORT_DESC="Efficient neural speech synthesis"
pascal@21247 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@21247 8 LICENSE="BSD"
pascal@21247 9 TARBALL="$PACKAGE-$VERSION.tar.gz"
pascal@21247 10 WEB_SITE="https://people.xiph.org/~jm/demo/lpcnet_codec/"
pascal@21247 11 WGET_URL="https://github.com/mozilla/LPCNet/archive/v$VERSION.tar.gz"
pascal@21247 12
pascal@21247 13 BUILD_DEPENDS="automake libtool gcc63"
pascal@21247 14
pascal@21247 15 # Rules to configure and make the package.
pascal@21247 16 compile_rules()
pascal@21247 17 {
pascal@21247 18 export CC=gcc-63 CXX=g++-63
pascal@21247 19 ./autogen.sh
pascal@21247 20 ./configure --prefix=/usr \
pascal@21247 21 $CONFIGURE_ARGS &&
pascal@21247 22 make &&
pascal@21247 23 make DESTDIR=$DESTDIR install
pascal@21247 24 }
pascal@21247 25
pascal@21247 26 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@21247 27 genpkg_rules()
pascal@21247 28 {
pascal@21247 29 mkdir -p $fs/usr/lib
pascal@21247 30 cp -a $install/usr/lib/*.so* $fs/usr/lib
pascal@21247 31 }