ugdb: broken on targets without i128 support.

This commit is contained in:
Érico Nogueira 2022-02-05 20:20:12 -03:00
parent 823771297d
commit b12b9849c3

View file

@ -11,6 +11,14 @@ homepage="https://github.com/ftilde/ugdb"
distfiles="${homepage}/archive/${version}.tar.gz"
checksum=d092356534774505b6b081b82db71d1fab1fbccdb814a44d4c435bafe5efd312
if [ $XBPS_TARGET_WORDSIZE = 32 ]; then
case $XBPS_TARGET_MACHINE in
i686*) ;;
# https://build.voidlinux.org/builders/armv7l_builder/builds/36614/steps/shell_3/logs/stdio
*) broken="requires i128 support" ;;
esac
fi
post_install() {
vlicense LICENSE
}