2015-08-05 10:44:05 +00:00
|
|
|
# Template file for 'brltty'
|
|
|
|
pkgname=brltty
|
|
|
|
version=5.2
|
2015-08-06 14:48:34 +00:00
|
|
|
revision=2
|
2015-08-05 10:44:05 +00:00
|
|
|
build_style=gnu-configure
|
|
|
|
makedepends="ncurses-devel alsa-lib-devel gpm-devel at-spi2-core-devel"
|
|
|
|
configure_args="--enable-gpm --with-screen-driver=lx --with-tables-directory=/usr/share/brltty"
|
|
|
|
short_desc="Braille display driver for Linux/Unix"
|
|
|
|
maintainer="Juan RP <xtraeme@voidlinux.eu>"
|
|
|
|
license="GPL-2, LGPL-2.1"
|
|
|
|
homepage="http://mielke.cc/brltty/"
|
|
|
|
distfiles="http://mielke.cc/brltty/archive/brltty-${version}.tar.xz"
|
|
|
|
checksum=f1293940317a675d0eaeaf3f363bbfe4bfaa5225c2116123a61ce2d3c71943f7
|
|
|
|
|
2015-08-06 14:48:34 +00:00
|
|
|
pre_configure() {
|
|
|
|
case "$XBPS_TARGET_MACHINE" in
|
|
|
|
*-musl) # There is no ldconfig in musl libc
|
|
|
|
sed -e "s;/sbin/ldconfig -n;echo;" -i configure
|
|
|
|
esac
|
|
|
|
}
|
|
|
|
post_configure() {
|
|
|
|
case "$XBPS_TARGET_MACHINE" in
|
|
|
|
arm*-musl) # Fix erroneously detected "#define HAVE_SYS_IO_H 1"
|
|
|
|
sed -i config.h -e"s;#define HAVE_SYS_IO_H 1;#undef HAVE_SYS_IO_H;"
|
|
|
|
esac
|
|
|
|
}
|
2015-08-05 10:44:05 +00:00
|
|
|
do_install() {
|
|
|
|
make INSTALL_ROOT=${DESTDIR} install
|
|
|
|
vsv $pkgname
|
|
|
|
}
|
|
|
|
|
|
|
|
brltty-devel_package() {
|
|
|
|
short_desc+=" - development files"
|
|
|
|
depends="${sourcepkg}-${version}_${revision}"
|
|
|
|
pkg_install() {
|
|
|
|
vmove usr/bin/brltty-config
|
|
|
|
vmove usr/include
|
|
|
|
vmove usr/lib/*.a
|
|
|
|
vmove usr/lib/*.so
|
|
|
|
vmove usr/share/man/man3
|
|
|
|
}
|
|
|
|
}
|