Compare commits
3 Commits
0cadb12c00
...
v0.4
Author | SHA1 | Date | |
---|---|---|---|
515827e830 | |||
4f6260eb6f | |||
b6a44df82a |
@ -29,6 +29,8 @@ Cthulhu has the following dependencies:
|
||||
* liblouis - Liblouis (<http://liblouis.org/>) support for contracted braille (optional)
|
||||
* py-setproctitle - Python library to set the process title (optional)
|
||||
* gstreamer-1.0 - GStreamer - Streaming media framework (optional)
|
||||
* socat - Used for self-voicing functionality.
|
||||
* libpeas - For the plugin system.
|
||||
|
||||
You are strongly encouraged to also have the latest stable versions
|
||||
of AT-SPI2 and ATK.
|
||||
|
@ -1,4 +1,4 @@
|
||||
m4_define([cthulhu_version], [0.3])
|
||||
m4_define([cthulhu_version], [0.4])
|
||||
|
||||
m4_define(pygobject_required_version, 3.18)
|
||||
m4_define(atspi_required_version, 2.48)
|
||||
@ -28,6 +28,7 @@ PKG_CHECK_MODULES([PYGOBJECT], [pygobject-3.0 >= pygobject_required_version])
|
||||
PKG_CHECK_MODULES([ATSPI2], [atspi-2 >= atspi_required_version])
|
||||
PKG_CHECK_MODULES([ATKBRIDGE], [atk-bridge-2.0 >= atkbridge_required_version])
|
||||
PKG_CHECK_MODULES([GSTREAMER], [gstreamer-1.0], [gstreamer="yes"], [gstreamer="no"])
|
||||
PKG_CHECK_MODULES([LIBPEAS], [libpeas-1.0], [libpeas="yes"], [libpeas="no"])
|
||||
|
||||
dnl Needed programs
|
||||
AC_PROG_INSTALL
|
||||
@ -158,6 +159,10 @@ echo
|
||||
echo "NOTE: Sound support requires gstreamer-1.0."
|
||||
fi
|
||||
|
||||
if test "$have_libpeas" = "no"; then
|
||||
AC_MSG_ERROR([libpeas-1.0 >= 1.20 is required])
|
||||
fi
|
||||
|
||||
echo
|
||||
echo Use speech-dispatcher: $speechd_available
|
||||
echo Use brltty: $brlapi_available
|
||||
|
@ -1,7 +1,7 @@
|
||||
# Maintainer: Storm Dragon <storm_dragon@stormux.org>
|
||||
|
||||
pkgname=cthulhu
|
||||
pkgver=0.3
|
||||
pkgver=0.4
|
||||
pkgrel=1
|
||||
pkgdesc="Screen reader for individuals who are blind or visually impaired forked from Orca"
|
||||
url="https://git.stormux.org/storm/cthulhu"
|
||||
|
Reference in New Issue
Block a user