Developing formulae or casks #5059
Unanswered
snakebyte69
asked this question in
Writing Formulae/Casks
Replies: 1 comment
-
https://github.com/snakebyte69/z80ex/releases/tag/ez80ex-brew/z80ex.tar.gz is an HTML page. You probably want https://github.com/snakebyte69/z80ex/archive/refs/tags/ez80ex-brew.tar.gz. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Output of
brew config
Output of
brew doctor
Description of issue
class Z80ex < Formula
homepage "https://github.com/snakebyte69/z80ex"
url "https://github.com/snakebyte69/z80ex/releases/tag/ez80ex-brew/z80ex.tar.gz"
version "1.1.21"
sha256 "0066fa53b13e09b9c286b75c6d28de07412902b06cdef964e6c04f26e055d0a6"
license "GPL-2.0-or-later"
def install
system "./configure", "--disable-silent-rules", *std_configure_args
system "sudo make"
system "sudo make install"
end
test do
system "false"
end
end
% brew install snakebyte69/homebrew-snake/z80ex
Warning: No remote 'origin' in /usr/local/Homebrew/Library/Taps/snakebyte69/homebrew-snake, skipping update!
==> Fetching snakebyte69/snake/z80ex
==> Downloading https://github.com/snakebyte69/z80ex/releases/tag/ez80ex-brew/z8
Already downloaded: /Users/snake/Library/Caches/Homebrew/downloads/f988d5f3153f56bbddbdabcdd867410b18b496eaee5f6fa54a228d2487807cbe--z80ex.tar.gz
==> Installing z80ex from snakebyte69/snake
tar: Error opening archive: Unrecognized archive format
Error: Failure while executing;
/usr/bin/env tar --extract --no-same-owner --file /Users/snake/Library/Caches/Homebrew/downloads/f988d5f3153f56bbddbdabcdd867410b18b496eaee5f6fa54a228d2487807cbe--z80ex.tar.gz --directory /private/tmp/d20240116-63762-ujy9pf
exited with 1. Here's the output:tar: Error opening archive: Unrecognized archive format
% brew install snakebyte69/homebrew-snake/z80ex
==> Fetching snakebyte69/snake/z80ex
==> Downloading https://github.com/snakebyte69/z80ex/releases/tag/ez80ex-brew/z80ex.tar.gz
Already downloaded: /Users/snake/Library/Caches/Homebrew/downloads/f988d5f3153f56bbddbdabcdd867410b18b496eaee5f6fa54a228d2487807cbe--z80ex.tar.gz
==> Installing z80ex from snakebyte69/snake
tar: Error opening archive: Unrecognized archive format
Error: Failure while executing;
/usr/bin/env tar --extract --no-same-owner --file /Users/snake/Library/Caches/Homebrew/downloads/f988d5f3153f56bbddbdabcdd867410b18b496eaee5f6fa54a228d2487807cbe--z80ex.tar.gz --directory /private/tmp/d20240116-64229-4ywewm
exited with 1. Here's the output:tar: Error opening archive: Unrecognized archive format
%
Not sure why it doesn't like the archive
I get the same error with .tar.gz or .tar
Beta Was this translation helpful? Give feedback.
All reactions