45 lines
1.3 KiB
Bash
45 lines
1.3 KiB
Bash
# Template file for 'brltty'
|
|
pkgname=brltty
|
|
version=5.3.1
|
|
revision=1
|
|
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=5bf6dfda8b48d505886f8a8165af8fdd74a3b97f4cae58febb648664283e9748
|
|
|
|
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
|
|
}
|
|
do_install() {
|
|
make INSTALL_ROOT=${DESTDIR} install
|
|
vsv $pkgname
|
|
vsconf Documents/brltty.conf
|
|
vdoc Documents/ChangeLog
|
|
vcopy Documents/Manual-BRLTTY usr/share/doc/${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
|
|
}
|
|
}
|