diff options
Diffstat (limited to 'community/espeakup/PKGBUILD')
-rw-r--r-- | community/espeakup/PKGBUILD | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/community/espeakup/PKGBUILD b/community/espeakup/PKGBUILD index 89061f262..ca2fcd40b 100644 --- a/community/espeakup/PKGBUILD +++ b/community/espeakup/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 13306 2010-03-20 23:49:14Z cbrannon $ -# Contributor: Chris Brannon <cmbrannon@cox.net> +# $Id: PKGBUILD 65675 2012-02-21 21:13:11Z cbrannon $ +# Maintainer: Chris Brannon <chris@the-brannons.com> pkgname=espeakup pkgver=0.71 -pkgrel=3 +pkgrel=4 pkgdesc='Allows the Speakup screen review system to use the ESpeak synthesizer.' arch=('i686' 'x86_64') url="http://github.com/williamh/espeakup" @@ -17,10 +17,10 @@ backup=(etc/conf.d/espeakup) 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 + install -m755 -D espeakup "${pkgdir}/etc/rc.d/espeakup" + install -m644 -D espeakup.conf.d "${pkgdir}/etc/conf.d/espeakup" cd "$srcdir/$pkgname-$pkgver" - make || return 1 - make DESTDIR="${pkgdir}" install || return 1 + make + make DESTDIR="${pkgdir}" install } |