void-packages/srcpkgs/fribidi/template
Nathan Owens e8d5308c52 fribidi: update to 1.0.8
Signed-off-by: Nathan Owens <ndowens04@gmail.com>
2019-12-15 09:19:40 +01:00

38 lines
1,005 B
Bash

# Template file for 'fribidi'
pkgname=fribidi
version=1.0.8
revision=1
build_style=gnu-configure
configure_args="--disable-docs"
hostmakedepends="automake libtool pkg-config"
short_desc="Free Implementation of the Unicode Bidirectional Algorithm"
maintainer="Orphaned <orphan@voidlinux.org>"
license="LGPL-2.1-or-later"
homepage="https://github.com/fribidi/fribidi/"
distfiles="https://github.com/fribidi/fribidi/archive/v${version}.tar.gz"
checksum=b9129703e20c617aa97f81dce09206691b918703d394b17fc5cb04640d61c73c
disable_parallel_build=yes
pre_configure() {
NOCONFIGURE=1 autoreconf -fi
}
pre_build() {
if [ "$CROSS_BUILD" ]; then
sed -i gen.tab/Makefile \
-e "s;^\(CC =\) .*;\1 cc;" \
-e "s;^\(CFLAGS =\) .*;\1 -O2 -pipe;" \
-e "s;^\(LDFLAGS =\) .*;\1 -s;"
fi
}
fribidi-devel_package() {
depends="fribidi>=${version}_${revision}"
short_desc+=" - development files"
pkg_install() {
vmove usr/include
vmove usr/lib/pkgconfig
vmove "usr/lib/*.so"
vmove usr/share/man/man3
}
}