Skip to content

Commit

Permalink
Fix url and test
Browse files Browse the repository at this point in the history
  • Loading branch information
FiloSottile committed Dec 10, 2023
1 parent f885108 commit 9be3f4b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion musl-cross.rb
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
class MuslCross < Formula
desc "Linux cross compilers based on musl libc"
homepage "https://github.com/richfelker/musl-cross-make"
url "https://github.com/richfelker/musl-cross-make/archive/v0.9.9.tar.gz"
url "https://github.com/richfelker/musl-cross-make/archive/refs/tags/v0.9.9.tar.gz"
sha256 "ff3e2188626e4e55eddcefef4ee0aa5a8ffb490e3124850589bcaf4dd60f5f04"
revision 1
head "https://github.com/richfelker/musl-cross-make.git"
Expand Down Expand Up @@ -163,5 +163,7 @@ def install
system "#{bin}/mips64el-linux-musl-cc", (testpath/"hello.c") if build.with? "mips64el"
system "#{bin}/powerpc-linux-musl-cc", (testpath/"hello.c") if build.with? "powerpc"
system "#{bin}/powerpc-linux-muslsf-cc", (testpath/"hello.c") if build.with? "powerpc-sf"
system "#{bin}/powerpc64-linux-musl-cc", (testpath/"hello.c") if build.with? "powerpc64"
system "#{bin}/powerpc64le-linux-musl-cc", (testpath/"hello.c") if build.with? "powerpc64le"
end
end

0 comments on commit 9be3f4b

Please sign in to comment.