Skip to content

Commit

Permalink
[Add] libwebp 1.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
dreampiggy authored and CocoaPodsBot committed Sep 15, 2023
1 parent 4e06ed8 commit 5001d2e
Showing 1 changed file with 97 additions and 0 deletions.
97 changes: 97 additions & 0 deletions Specs/1/9/2/libwebp/1.3.2/libwebp.podspec.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,97 @@
{
"name": "libwebp",
"version": "1.3.2",
"summary": "Library to encode and decode images in WebP format.",
"homepage": "https://developers.google.com/speed/webp/",
"authors": "Google Inc.",
"license": {
"type": "BSD",
"file": "COPYING"
},
"source": {
"git": "https://github.com/webmproject/libwebp.git",
"tag": "v1.3.2"
},
"compiler_flags": "-D_THREAD_SAFE",
"requires_arc": false,
"platforms": {
"osx": "10.10",
"ios": "9.0",
"tvos": "9.0",
"watchos": "2.0"
},
"pod_target_xcconfig": {
"USER_HEADER_SEARCH_PATHS": "$(inherited) ${PODS_ROOT}/libwebp/ ${PODS_TARGET_SRCROOT}/"
},
"default_subspecs": [
"sharpyuv",
"webp",
"demux",
"mux"
],
"preserve_paths": "src",
"prepare_command": "sed -i.bak 's/<inttypes.h>/<stdint.h>/g' './src/webp/types.h'",
"subspecs": [
{
"name": "sharpyuv",
"preserve_paths": [
"src",
"sharpyuv"
],
"source_files": "sharpyuv/*.{h,c}",
"public_header_files": "sharpyuv/sharpyuv.h"
},
{
"name": "webp",
"dependencies": {
"libwebp/sharpyuv": [

]
},
"source_files": [
"src/webp/decode.h",
"src/webp/encode.h",
"src/webp/types.h",
"src/webp/mux_types.h",
"src/webp/format_constants.h",
"src/utils/*.{h,c}",
"src/dsp/*.{h,c}",
"src/dec/*.{h,c}",
"src/enc/*.{h,c}"
],
"public_header_files": [
"src/webp/decode.h",
"src/webp/encode.h",
"src/webp/types.h",
"src/webp/mux_types.h",
"src/webp/format_constants.h"
]
},
{
"name": "demux",
"dependencies": {
"libwebp/webp": [

]
},
"source_files": [
"src/demux/*.{h,c}",
"src/webp/demux.h"
],
"public_header_files": "src/webp/demux.h"
},
{
"name": "mux",
"dependencies": {
"libwebp/demux": [

]
},
"source_files": [
"src/mux/*.{h,c}",
"src/webp/mux.h"
],
"public_header_files": "src/webp/mux.h"
}
]
}

0 comments on commit 5001d2e

Please sign in to comment.