-
Notifications
You must be signed in to change notification settings - Fork 35
/
LASwift.podspec
35 lines (28 loc) · 1.25 KB
/
LASwift.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
#
# Be sure to run `pod lib lint LASwift.podspec' to ensure this is a
# valid spec before submitting.
#
# Any lines starting with a # are optional, but their use is encouraged
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = 'LASwift'
s.version = '0.3.2'
s.summary = 'Linear algebra library for Swift language'
s.description = <<-DESC
This library provides most of linear algebra operations on vectors and matrices
required to implement machine learning algorithms. Library syntax is inspired by
Matlab matrix manipulation and Haskell linear algebra library 'hmatrix'
DESC
s.homepage = 'https://github.com/alexandertar/LASwift'
s.license = { :type => 'BSD-3-Clause', :file => 'LICENSE' }
s.author = { 'Alexander Taraymovich' => '[email protected]' }
s.source = { :git => 'https://github.com/alexandertar/LASwift.git', :tag => s.version.to_s }
s.ios.deployment_target = '12.0'
s.osx.deployment_target = '10.13'
s.tvos.deployment_target = '12.0'
s.watchos.deployment_target = '6.0'
s.swift_version = '5.0'
s.frameworks = 'Accelerate'
s.source_files = 'Sources/**/*'
end