Skip to content

Commit

Permalink
Remove submodule (#12)
Browse files Browse the repository at this point in the history
* Fix

* Update Package.swift

* Update Package.swift
  • Loading branch information
umireon authored Feb 28, 2024
1 parent 7a83e70 commit 3f9c7b0
Show file tree
Hide file tree
Showing 5 changed files with 24 additions and 21 deletions.
7 changes: 6 additions & 1 deletion .github/workflows/push.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,17 @@ jobs:
uses: "actions/checkout@v4"
with:
submodules: "recursive"

- name: "Install build dependencies"
run: "brew install automake autoconf libtool meson autogen gtk-doc bison yasm"

- name: "Add bison to PATH"
run: 'echo "$(brew --prefix)/opt/bison/bin" >> "$GITHUB_PATH"'

- name: "Download and extract FFmpegKit"
run: |
curl -fsSL https://github.com/arthenica/ffmpeg-kit/archive/refs/tags/v6.0.LTS.tar.gz | tar -xz
mv ffmpeg-kit-6.0.LTS ffmpeg-kit
- name: "Build XCFrameworks"
working-directory: "ffmpeg-kit"
Expand Down
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -88,3 +88,5 @@ fastlane/test_output
# https://github.com/johnno1962/injectionforxcode

iOSInjectionProject/

ffmpeg-kit*/
3 changes: 0 additions & 3 deletions .gitmodules

This file was deleted.

32 changes: 16 additions & 16 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -23,42 +23,42 @@ let package = Package(
.binaryTarget(
name: "ffmpegkit",
url:
"https://github.com/kaito-tokyo/ffmpeg-kit-spm/releases/download/6.0.2/ffmpegkit.xcframework.zip",
checksum: "2c6cd33fd317909d2c015ec435cab4e0a82c2e7572269ead04b43506b5a7a4ee"),
"https://github.com/kaito-tokyo/ffmpeg-kit-spm/releases/download/6.0.3/ffmpegkit.xcframework.zip",
checksum: "e12ee3023d81bd6cbe5dcfba18b0b20c1d7896f4cb0c28eedcc4e4e45b3319aa"),
.binaryTarget(
name: "libavcodec",
url:
"https://github.com/kaito-tokyo/ffmpeg-kit-spm/releases/download/6.0.2/libavcodec.xcframework.zip",
checksum: "38e5c38e170bd5b0f1ccd7d36bcb78acaab6f05557e2061fa007b1666cb48e98"),
"https://github.com/kaito-tokyo/ffmpeg-kit-spm/releases/download/6.0.3/libavcodec.xcframework.zip",
checksum: "f188ed68f6150479de6d8a647604f857a01d1f2000639a628cd73d57cd849465"),
.binaryTarget(
name: "libavdevice",
url:
"https://github.com/kaito-tokyo/ffmpeg-kit-spm/releases/download/6.0.2/libavdevice.xcframework.zip",
checksum: "d80ce6ba96ba11381aa713bca4c92e2b41ab6ddb38cc18862cbf16bf793648bc"),
"https://github.com/kaito-tokyo/ffmpeg-kit-spm/releases/download/6.0.3/libavdevice.xcframework.zip",
checksum: "5db009af634e80d95924e474a3a999a8473626c6fafe199bc0785898d82d2ca6"),
.binaryTarget(
name: "libavfilter",
url:
"https://github.com/kaito-tokyo/ffmpeg-kit-spm/releases/download/6.0.2/libavfilter.xcframework.zip",
checksum: "2bdc466246579b9e1b27389d980b4e2fa86e6299ffd5d996a95127223774f3a7"),
"https://github.com/kaito-tokyo/ffmpeg-kit-spm/releases/download/6.0.3/libavfilter.xcframework.zip",
checksum: "9cbae6a0b2731e965ba44df97b6444a622d287c8105319effb6d96c6b5093edf"),
.binaryTarget(
name: "libavformat",
url:
"https://github.com/kaito-tokyo/ffmpeg-kit-spm/releases/download/6.0.2/libavformat.xcframework.zip",
checksum: "c27699089947137d04f5bca132cf7065394fd01b933abfc48187f371289976cb"),
"https://github.com/kaito-tokyo/ffmpeg-kit-spm/releases/download/6.0.3/libavformat.xcframework.zip",
checksum: "0466fd6adf26181d224b1984321d3eccfef0feb5c2652fb2852cc0594c814b54"),
.binaryTarget(
name: "libavutil",
url:
"https://github.com/kaito-tokyo/ffmpeg-kit-spm/releases/download/6.0.2/libavutil.xcframework.zip",
checksum: "f5e5f77bfcea9d01608cd1c9a95a79b5dbc4422036d4fcfdd0e12dc456b7de06"),
"https://github.com/kaito-tokyo/ffmpeg-kit-spm/releases/download/6.0.3/libavutil.xcframework.zip",
checksum: "b49923674e14dedbd4c8236d80ccb630d7445299c1988dc1f9dd0f13c15e69fe"),
.binaryTarget(
name: "libswresample",
url:
"https://github.com/kaito-tokyo/ffmpeg-kit-spm/releases/download/6.0.2/libswresample.xcframework.zip",
checksum: "eca0fc496ffe55739a0d49b8933acc57b6c0cf317666ef7538378932e5b53c48"),
"https://github.com/kaito-tokyo/ffmpeg-kit-spm/releases/download/6.0.3/libswresample.xcframework.zip",
checksum: "725f191d85333d2e7bf01604006209b66f68fc574272bbf955f4d807817247bf"),
.binaryTarget(
name: "libswscale",
url:
"https://github.com/kaito-tokyo/ffmpeg-kit-spm/releases/download/6.0.2/libswscale.xcframework.zip",
checksum: "3807328203e9650cc72d5aef84f3f18dda36540a5a6b627b7933ff078bacfdac")
"https://github.com/kaito-tokyo/ffmpeg-kit-spm/releases/download/6.0.3/libswscale.xcframework.zip",
checksum: "07b084c1ecceed1e1fb458f6205d749ec42f7d1750d5d6e472115fba8ab5e9be")
]
)
1 change: 0 additions & 1 deletion ffmpeg-kit
Submodule ffmpeg-kit deleted from d6be56

0 comments on commit 3f9c7b0

Please sign in to comment.