ugdb: broken on targets without i128 support.
This commit is contained in:
parent
823771297d
commit
b12b9849c3
1 changed files with 8 additions and 0 deletions
|
@ -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
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue