24 lines
		
	
	
		
			701 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			701 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
| require "tmpdir"
 | |
| 
 | |
| require "hbc/container/base"
 | |
| 
 | |
| class Hbc::Container::Lzma < Hbc::Container::Base
 | |
|   def self.me?(criteria)
 | |
|     criteria.magic_number(%r{^\]\000\000\200\000}n)
 | |
|   end
 | |
| 
 | |
|   def extract
 | |
|     unlzma = Hbc.homebrew_prefix.join("bin", "unlzma")
 | |
| 
 | |
|     unless unlzma.exist?
 | |
|       raise Hbc::CaskError, "Expected to find unlzma executable. Cask '#{@cask}' must add: depends_on formula: 'lzma'"
 | |
|     end
 | |
| 
 | |
|     Dir.mktmpdir do |unpack_dir|
 | |
|       @command.run!("/usr/bin/ditto", args: ["--", @path, unpack_dir])
 | |
|       @command.run!(unlzma, args: ["-q", "--", Pathname(unpack_dir).join(@path.basename)])
 | |
|       @command.run!("/usr/bin/ditto", args: ["--", unpack_dir, @cask.staged_path])
 | |
|     end
 | |
|   end
 | |
| end
 | 
