mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
21 lines
659 B
Bash
21 lines
659 B
Bash
# Maintainer: Chris Brannon <cmbrannon79@gmail.com>
|
|
pkgname=speakup-utils
|
|
pkgver=3.1.3
|
|
pkgrel=1
|
|
pkgdesc='Tiny utilities for controlling the Speakup screenreader'
|
|
arch=(any)
|
|
url="http://linux-speakup.org/"
|
|
license=('GPL2')
|
|
source=("ftp://linux-speakup.org/pub/speakup/speakup-$pkgver.tar.bz2"
|
|
use-bash.patch)
|
|
md5sums=('395ba6e883d4e211caa9902040ecf9b2'
|
|
'befc3077f670daa74d30a46747c837e6')
|
|
depends=(bash)
|
|
|
|
build() {
|
|
cd "$srcdir/speakup-$pkgver/tools"
|
|
patch < "$srcdir/use-bash.patch" || return 1
|
|
install -D -m755 speakupconf "$pkgdir/usr/bin/speakupconf" || return 1
|
|
install -D -m755 talkwith "$pkgdir/usr/sbin/talkwith" || return 1
|
|
}
|
|
|