@@ -8,19 +8,19 @@ let package = Package(
8
8
products: [
9
9
. library(
10
10
name: " Python-iOS " ,
11
- targets: [ " Python " , " SSL " , " Crypto " , " FFI " , " PythonSupport " ] ) ,
11
+ targets: [ " libpython3 " , " libssl " , " libcrypto " , " libffi " , " PythonSupport " ] ) ,
12
12
] ,
13
13
targets: [
14
- . binaryTarget( name: " Python " , url: " https://github.com/kewlbear/Python-iOS/releases/download/0.0.1/libpython3.xcframework.zip " , checksum: " 245c51a97eda854a7b0c7bd507f24d1dfc2efae38f20aceac91fe0fd99a6eebe " ) ,
15
- . binaryTarget( name: " SSL " , url: " https://github.com/kewlbear/Python-iOS/releases/download/0.0.1/libssl.xcframework.zip " , checksum: " 1fc7dd3e95d5152812bc8d74450fdc45539e4ac53d4008b21b7f0a81d2fc52a9 " ) ,
16
- . binaryTarget( name: " Crypto " , url: " https://github.com/kewlbear/Python-iOS/releases/download/0.0.1/libcrypto.xcframework.zip " , checksum: " 43948ae2aac97bf80445ad0e38dd943b4f903506802633bd82d8b813da0328bf " ) ,
17
- . binaryTarget( name: " FFI " , url: " https://github.com/kewlbear/Python-iOS/releases/download/0.0.1/libffi.xcframework.zip " , checksum: " 0b028a1068f5f085ba1861b73928b99d14970438639d2531c3f31afe4d0e0e3c " ) ,
14
+ . binaryTarget( name: " libpython3 " , url: " https://github.com/kewlbear/Python-iOS/releases/download/0.0.1/libpython3.xcframework.zip " , checksum: " 245c51a97eda854a7b0c7bd507f24d1dfc2efae38f20aceac91fe0fd99a6eebe " ) ,
15
+ . binaryTarget( name: " libssl " , url: " https://github.com/kewlbear/Python-iOS/releases/download/0.0.1/libssl.xcframework.zip " , checksum: " 1fc7dd3e95d5152812bc8d74450fdc45539e4ac53d4008b21b7f0a81d2fc52a9 " ) ,
16
+ . binaryTarget( name: " libcrypto " , url: " https://github.com/kewlbear/Python-iOS/releases/download/0.0.1/libcrypto.xcframework.zip " , checksum: " 43948ae2aac97bf80445ad0e38dd943b4f903506802633bd82d8b813da0328bf " ) ,
17
+ . binaryTarget( name: " libffi " , url: " https://github.com/kewlbear/Python-iOS/releases/download/0.0.1/libffi.xcframework.zip " , checksum: " 0b028a1068f5f085ba1861b73928b99d14970438639d2531c3f31afe4d0e0e3c " ) ,
18
18
. target( name: " PythonSupport " ,
19
19
dependencies: [
20
- " Python " ,
21
- " SSL " ,
22
- " Crypto " ,
23
- " FFI " ,
20
+ " libpython3 " ,
21
+ " libssl " ,
22
+ " libcrypto " ,
23
+ " libffi " ,
24
24
] ,
25
25
resources: [ . copy( " lib " ) ] ,
26
26
linkerSettings: [
0 commit comments