You've already forked goreleaser
							
							
				mirror of
				https://github.com/goreleaser/goreleaser.git
				synced 2025-10-30 23:58:09 +02:00 
			
		
		
		
	
		
			
				
	
	
		
			50 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			50 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| # This file was generated by GoReleaser. DO NOT EDIT.
 | |
| class MultipleArmv6 < Formula
 | |
|   desc "A run pipe test formula and FOO=foo_is_bar"
 | |
|   homepage "https://github.com/goreleaser"
 | |
|   version "1.0.1"
 | |
|   bottle :unneeded
 | |
| 
 | |
|   if OS.mac?
 | |
|     url "https://dummyhost/download/v1.0.1/bin.tar.gz"
 | |
|     sha256 "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855"
 | |
|   elsif OS.linux?
 | |
|     if Hardware::CPU.arm?
 | |
|       if Hardware::CPU.is_64_bit?
 | |
|         url "https://dummyhost/download/v1.0.1/arm64.tar.gz"
 | |
|         sha256 "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855"
 | |
|       else
 | |
|         url "https://dummyhost/download/v1.0.1/armv6.tar.gz"
 | |
|         sha256 "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855"
 | |
|       end
 | |
|     end
 | |
|   end
 | |
|   
 | |
|   depends_on "zsh"
 | |
|   depends_on "bash" => :recommended
 | |
|   
 | |
|   conflicts_with "gtk+"
 | |
|   conflicts_with "qt"
 | |
| 
 | |
|   def install
 | |
|     bin.install "multiple_armv6"
 | |
|   end
 | |
| 
 | |
|   def caveats; <<~EOS
 | |
|     don't do this multiple_armv6
 | |
|   EOS
 | |
|   end
 | |
| 
 | |
|   plist_options :startup => false
 | |
| 
 | |
|   def plist; <<~EOS
 | |
|     <xml>whatever</xml>
 | |
|   EOS
 | |
|   end
 | |
| 
 | |
|   test do
 | |
|     system "true"
 | |
|     system "#{bin}/foo -h"
 | |
|   end
 | |
| end
 |