mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 20:07:14 +08:00
25 lines
824 B
Bash
25 lines
824 B
Bash
#
|
|
# Chakra Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer (i686): Phil Miller <philm[at]chakra-project[dog]org>
|
|
# maintainer (x86_64): Manuel Tortosa <manutortosa[at]chakra-project[dot]org>
|
|
|
|
pkgname=espeak
|
|
pkgver=1.45.04
|
|
pkgrel=1
|
|
pkgdesc="Text to Speech engine for good quality English, with support for other languages"
|
|
arch=('i686' 'x86_64')
|
|
url="http://espeak.sourceforge.net/"
|
|
license=('GPL')
|
|
depends=('gcc-libs' 'portaudio')
|
|
source=(http://downloads.sourceforge.net/sourceforge/${pkgname}/${pkgname}-${pkgver}-source.zip)
|
|
md5sums=('6e810d2786b55cddb34f31b3eb813507')
|
|
|
|
build() {
|
|
cd $startdir/src/$pkgname-$pkgver-source/src
|
|
cp portaudio19.h portaudio.h
|
|
make || return 1
|
|
make DESTDIR=$startdir/pkg install
|
|
find "$pkgdir/usr/share/espeak-data" -type f -print0 |xargs -0 chmod 644|| return 1
|
|
}
|