This repository has been archived by the owner on Apr 3, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 20
/
crosswalk-extension-cordova.podspec
36 lines (32 loc) · 1.91 KB
/
crosswalk-extension-cordova.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# Copyright (c) 2015 Intel Corporation. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
Pod::Spec.new do |s|
s.name = 'crosswalk-extension-cordova'
s.version = '1.1'
s.summary = 'Cordova extension is a Crosswalk extension which enables Cordova plugins to integrate with Crosswalk runtime.'
s.homepage = 'https://github.com/crosswalk-project/ios-extensions-crosswalk/tree/master/extensions/Cordova'
s.license = { :type => 'BSD', :file => "LICENSE" }
s.author = { 'Jonathan Dong' => 'jonathan.dong@intel.com' }
s.source = { :git => 'https://github.com/crosswalk-project/ios-extensions-crosswalk.git', :tag => s.version.to_s, :submodules => true }
s.social_media_url = 'https://twitter.com/xwalk_project'
s.platform = :ios, '8.1'
s.ios.deployment_target = '8.1'
s.module_name = 'Cordova'
s.dependency 'crosswalk-ios', '~> 1.2'
s.source_files =[
'extensions/Cordova/Cordova/*.{h,m,swift}',
'third-party/cordova-ios/CordovaLib/Classes/Public/CDVAvail*.*',
'third-party/cordova-ios/CordovaLib/Classes/Public/CDVCommandDelegate.h',
'third-party/cordova-ios/CordovaLib/Classes/Public/CDVCommandQueue.*',
'third-party/cordova-ios/CordovaLib/Classes/Public/CDVInvoked*.*',
'third-party/cordova-ios/CordovaLib/Classes/Public/CDVPlugin.*',
'third-party/cordova-ios/CordovaLib/Classes/Public/CDVPlugin+Resources.*',
'third-party/cordova-ios/CordovaLib/Classes/Public/CDVPluginResult.*',
'third-party/cordova-ios/CordovaLib/Classes/Public/CDV[S,T,U,W]*.*',
'third-party/cordova-ios/CordovaLib/Classes/Public/NS*.*',
'third-party/cordova-ios/CordovaLib/Classes/Private/*.{h,m}',
'third-party/cordova-ios/CordovaLib/Classes/Private/**/*.{h,m}'
]
s.resource = 'extensions/Cordova/Cordova/*.js', 'extensions/Cordova/Cordova/extensions.plist'
end