mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-08 23:03:46 +00:00
24 lines
781 B
Bash
24 lines
781 B
Bash
# Contributor: Chris Brannon <cmbrannon@cox.net>
|
|
pkgname=espeakup
|
|
pkgver=0.71
|
|
pkgrel=2
|
|
pkgdesc='Allows the Speakup screen review system to use the ESpeak synthesizer.'
|
|
arch=('i686' 'x86_64')
|
|
url="http://linux-speakup.org/"
|
|
license=('GPL3')
|
|
source=("http://members.cox.net/cmbrannon/${pkgname}-${pkgver}.tar.bz2"
|
|
espeakup espeakup.conf.d)
|
|
md5sums=('03daa70b3db3f4f6fbb42c2ee428eda7'
|
|
'7cf0abd493710ed924b7bb7c8d279fb3'
|
|
'0f93974845b15efa12f5e7a74cc0eecd')
|
|
depends=(speakup espeak)
|
|
|
|
build() {
|
|
cd "$srcdir"
|
|
install -m755 -D espeakup "${pkgdir}/etc/rc.d/espeakup" || return 1
|
|
install -m644 -D espeakup.conf.d "${pkgdir}/etc/conf.d/espeakup" || return 1
|
|
cd "$srcdir/$pkgname-$pkgver"
|
|
|
|
make || return 1
|
|
make DESTDIR="${pkgdir}" install || return 1
|
|
}
|