From 7ff5ccad9b2261d2a715ca069aeb00ea14e56641 Mon Sep 17 00:00:00 2001 From: q66 Date: Sat, 4 Jan 2020 22:40:37 +0100 Subject: [PATCH] hashcat: not supported on BE --- srcpkgs/hashcat/template | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/srcpkgs/hashcat/template b/srcpkgs/hashcat/template index da1dbae7ebe..2febf41f092 100644 --- a/srcpkgs/hashcat/template +++ b/srcpkgs/hashcat/template @@ -18,6 +18,10 @@ changelog="https://raw.githubusercontent.com/hashcat/hashcat/master/docs/changes distfiles="https://hashcat.net/files/hashcat-${version}.tar.gz" checksum=283beaa68e1eab41de080a58bb92349c8e47a2bb1b93d10f36ea30f418f1e338 +if [ "$XBPS_TARGET_ENDIAN" = "be" ]; then + broken="Not supported on big endian" +fi + post_extract() { sed '/^CC/d' -i src/Makefile }