blob: 1e422ea6be4aaa03b7ccf82f426cab4bdfd64cb6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
# Maintainer: Alexander Epaneshnikov <aarnaarn2@gmail.com>
# Contributor: Steve Holmes <steve.holmes88@gmail.com>
# Contributor: William Rea <sillywilly@gmail.com>
pkgname=orca-git
pkgver=40.0.r65.g989596c9b
pkgrel=1
pkgdesc="Screen reader for individuals who are blind or visually impaired (development version)"
url="https://wiki.gnome.org/Projects/Orca"
arch=('any')
license=('LGPL')
groups=('gnome')
depends=('gtk3' 'at-spi2-atk' 'python-atspi' 'python-dbus' 'python-pyxdg' 'speech-dispatcher' 'liblouis' 'brltty'
'xorg-xmodmap' 'gsettings-desktop-schemas'
'gst-plugins-base' # playbin, audiotestsrc, basic decoders
'gst-plugins-good' # pulsesink, more decoders
)
makedepends=('itstool' 'intltool' 'git' 'yelp-tools')
provides=("${pkgname%-git}")
conflicts=("${pkgname%-git}")
source=("${pkgname%-git}::git+https://gitlab.gnome.org/GNOME/${pkgname%-git}.git")
sha256sums=('SKIP')
pkgver() {
cd "${pkgname%-git}"
# cutting off 'ORCA_' prefix that presents in the git tag
git describe --long | sed 's/^ORCA_//;s/\([^-]*-g\)/r\1/;s/_/-/g;s/-/./g'
}
prepare() {
cd "${pkgname%-git}"
NOCONFIGURE=1 ./autogen.sh
}
build() {
cd "${pkgname%-git}"
./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var
make
}
package() {
cd "${pkgname%-git}"
make DESTDIR="${pkgdir}" install
}
|