mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-05 19:47:14 +08:00
23 lines
710 B
Bash
23 lines
710 B
Bash
# $Id: PKGBUILD 13249 2010-03-19 21:41:03Z mherych $
|
|
# Maintainer: Mateusz Herych <heniekk@gmail.com>
|
|
# Contributor: niQo
|
|
# Contributor: Christoph Siegenthaler <csi@gmx.ch>
|
|
|
|
pkgname=espeak
|
|
pkgver=1.43.03
|
|
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=('2c9f8479acb524209329e595d6ca7e2a')
|
|
|
|
build() {
|
|
cd $startdir/src/$pkgname-$pkgver-source/src
|
|
cp portaudio19.h portaudio.h
|
|
make || return 1
|
|
make DESTDIR=$startdir/pkg install || return 1
|
|
}
|