Skip to content

Commit

Permalink
ugdb: broken on targets without i128 support.
Browse files Browse the repository at this point in the history
  • Loading branch information
ericonr committed Feb 5, 2022
1 parent 8237712 commit b12b984
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions srcpkgs/ugdb/template
Expand Up @@ -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
}

0 comments on commit b12b984

Please sign in to comment.