cthulhu/distro-packages/Arch-Linux/PKGBUILD

59 lines
1.0 KiB
Bash
Raw Normal View History

# Maintainer: Storm Dragon <storm_dragon@stormux.org>
pkgname=cthulhu
2024-10-21 17:52:09 -04:00
pkgver=0.3
pkgrel=1
2024-10-20 21:16:28 -04:00
pkgdesc="Screen reader for individuals who are blind or visually impaired forked from Orca"
url="https://git.stormux.org/storm/cthulhu"
arch=(any)
license=(LGPL)
depends=(
at-spi2-core
brltty
gobject-introspection-runtime
gsettings-desktop-schemas
gstreamer
gst-plugins-base # playbin, audiotestsrc, basic decoders
gst-plugins-good # pulsesink, more decoders
gtk3
hicolor-icon-theme
liblouis
2024-10-20 20:41:20 -04:00
libpeas
libwnck3
pango
python
python-atspi
python-cairo
python-gobject
python-setproctitle
2024-10-21 12:55:42 -04:00
socat
speech-dispatcher
xorg-xkbcomp
xorg-xmodmap
)
makedepends=(
git
itstool
yelp-tools
)
source=("git+https://git.stormux.org/storm/cthulhu.git")
b2sums=('SKIP')
prepare() {
cd cthulhu
NOCONFIGURE=1 ./autogen.sh
}
build() {
cd cthulhu
./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var
make
}
package() {
cd cthulhu
make DESTDIR="$pkgdir" install
}
# vim:set sw=2 sts=-1 et: