gnupg: don't run checks for i686-musl

The checks make gnupg crash and the build fail. This means that some part
of gnupg is broken for i686-musl. Aloow it to build, though, to make it
available as a dependency for other packages.
This commit is contained in:
Jürgen Buchmüller 2017-11-09 15:31:14 +01:00
parent ffb5dc43b6
commit 0a5d5443a0
1 changed files with 6 additions and 0 deletions

View File

@ -11,3 +11,9 @@ license="GPL-3"
homepage="http://www.gnupg.org/"
distfiles="ftp://ftp.gnupg.org/gcrypt/gnupg/gnupg-${version}.tar.bz2"
checksum=9594a24bec63a21568424242e3f198b9d9828dea5ff0c335e47b06f835f930b4
post_extract() {
case "$XBPS_TARGET_MACHINE" in
i686-musl) sed -i Makefile* -e"s;checks = checks;checks =;" ;;
esac
}