summaryrefslogtreecommitdiff
path: root/community/espeakup
diff options
context:
space:
mode:
Diffstat (limited to 'community/espeakup')
-rw-r--r--community/espeakup/PKGBUILD14
-rw-r--r--community/espeakup/espeakup.modules-load.d1
-rw-r--r--community/espeakup/espeakup.service5
3 files changed, 14 insertions, 6 deletions
diff --git a/community/espeakup/PKGBUILD b/community/espeakup/PKGBUILD
index 0947ef7bd..4abea734b 100644
--- a/community/espeakup/PKGBUILD
+++ b/community/espeakup/PKGBUILD
@@ -1,15 +1,17 @@
-# $Id: PKGBUILD 78791 2012-10-24 23:06:54Z tomegun $
+# $Id: PKGBUILD 80362 2012-11-20 18:55:18Z tomegun $
# Contributor: Chris Brannon <chris@the-brannons.com>
# Contributor: Kyle <kyle@gmx.ca>
pkgname=espeakup
pkgver=0.71
-pkgrel=5
+pkgrel=7
pkgdesc='Allows the Speakup screen review system to use the ESpeak synthesizer.'
arch=('i686' 'x86_64' 'mips64el')
url="http://github.com/williamh/espeakup"
license=('GPL3')
-source=("ftp://linux-speakup.org/pub/linux/goodies/${pkgname}-${pkgver}.tar.bz2"
- espeakup espeakup.conf.d espeakup.service)
+#source=("ftp://linux-speakup.org/pub/linux/goodies/${pkgname}-${pkgver}.tar.bz2"
+# temporary location
+source=("http://the-brannons.com/espeakup-0.71.tar.bz2"
+ espeakup espeakup.conf.d espeakup.service espeakup.modules-load.d)
depends=(speakup-utils espeak)
backup=(etc/conf.d/espeakup)
@@ -24,8 +26,10 @@ package() {
install -m755 -D "${srcdir}/espeakup" "${pkgdir}/etc/rc.d/espeakup"
install -m644 -D "${srcdir}/espeakup.conf.d" "${pkgdir}/etc/conf.d/espeakup"
install -m644 -D "${srcdir}/espeakup.service" "${pkgdir}/usr/lib/systemd/system/espeakup.service"
+ install -m644 -D "${srcdir}/espeakup.modules-load.d" "${pkgdir}/usr/lib/modules-load.d/espeakup.conf"
}
md5sums=('03daa70b3db3f4f6fbb42c2ee428eda7'
'7cf0abd493710ed924b7bb7c8d279fb3'
'0f93974845b15efa12f5e7a74cc0eecd'
- '0c11c50b128234cda8e1357e88cf7c43')
+ '2c80525983a700d3763d4c90c3ab79a8'
+ '75eb512d510d6701b6f63390475dd34f')
diff --git a/community/espeakup/espeakup.modules-load.d b/community/espeakup/espeakup.modules-load.d
new file mode 100644
index 000000000..38d53913d
--- /dev/null
+++ b/community/espeakup/espeakup.modules-load.d
@@ -0,0 +1 @@
+speakup_soft
diff --git a/community/espeakup/espeakup.service b/community/espeakup/espeakup.service
index 58d7d47fa..88559d0fe 100644
--- a/community/espeakup/espeakup.service
+++ b/community/espeakup/espeakup.service
@@ -1,5 +1,8 @@
[Unit]
Description=Software speech output for Speakup
+# espeakup needs to start after the audio devices appear, hopefully this should go away in the future
+Wants=systemd-udev-settle.service
+After=systemd-udev-settle.service sound.target
[Service]
Type=forking
@@ -9,4 +12,4 @@ ExecReload=/bin/kill -HUP $MAINPID
Restart=always
[Install]
-WantedBy=multi-user.target
+WantedBy=sound.target