39 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			39 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Ruby
		
	
	
	
	
	
| #
 | |
| # To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html.
 | |
| # Run `pod lib lint veilid.podspec` to validate before publishing.
 | |
| #
 | |
| Pod::Spec.new do |s|
 | |
|   s.name             = 'veilid'
 | |
|   s.version          = '0.0.1'
 | |
|   s.summary          = 'Veilid Network'
 | |
|   s.description      = <<-DESC
 | |
| Veilid Network Plugin
 | |
|                        DESC
 | |
|   s.homepage         = 'http://veilid.com'
 | |
|   s.license          = 'LGPL-2.0-or-later OR MPL-2.0 OR (MIT AND BSD-3-Clause)'
 | |
|   s.author           = { 'John Smith' => 'jsmith@example.com' }
 | |
|   s.source           = { :path => '.' }
 | |
|   s.source_files     = 'Classes/**/*'
 | |
|   s.dependency 'FlutterMacOS'
 | |
| 
 | |
|   s.platform = :osx, '10.14.6'
 | |
|   s.osx.deployment_target = '10.14.6'
 | |
|   s.pod_target_xcconfig = { 'DEFINES_MODULE' => 'YES' }
 | |
|   s.swift_version = '5.0'
 | |
| 
 | |
|   require 'json'
 | |
|   require 'pathname'
 | |
| 
 | |
|   script_dir = File.realpath(File.expand_path(__dir__))
 | |
|   workspace_dir = File.dirname(JSON.parse(`(cd #{script_dir}; cargo locate-project --workspace)`)['root'])
 | |
|   cargo_target_dir = File.join(workspace_dir, 'target')
 | |
| 
 | |
|   s.script_phase = { 
 | |
|     :name => 'Cargo Build', 
 | |
|     :script => File.join(workspace_dir, 'scripts', 'macos_build.sh') + ' veilid_flutter', 
 | |
|     :execution_position => :before_compile
 | |
|     #:output_files => [ File.join(cargo_target_dir, 'lipo-darwin', 'libveilid_flutter.dylib') ]
 | |
|   }
 | |
| 
 | |
| end
 |