Skip to content

Commit

Permalink
[sjpeg] Add new port (#21094)
Browse files Browse the repository at this point in the history
* Add new port sjpeg

* Update CI baseline

* Remove "supports", use vcpkg_check_linkage

* Update git-tree hash

* Remove man pages

* Update git-tree hash

Co-authored-by: chausner <chausner@users.noreply.github.com>
  • Loading branch information
chausner and chausner authored Nov 4, 2021
1 parent f951227 commit f012fae
Show file tree
Hide file tree
Showing 4 changed files with 56 additions and 0 deletions.
26 changes: 26 additions & 0 deletions ports/sjpeg/portfile.cmake
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
if(VCPKG_TARGET_IS_WINDOWS)
vcpkg_check_linkage(ONLY_STATIC_LIBRARY)
endif()

vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO webmproject/sjpeg
REF 676de227d75877eb5863ec805ba0a4b97fc2fc6c
SHA512 cf9e5a744f79996817679dc2e64be2efd64cbc9bb5f505f5c6530f92d60fe99715c57bcf71e0bb80c77732ace1d71fbf1ff9b4e4ec2562a9576c74a4410c2cb1
HEAD_REF master
)

vcpkg_cmake_configure(
SOURCE_PATH "${SOURCE_PATH}"
OPTIONS
-DSJPEG_BUILD_EXAMPLES=OFF
)

vcpkg_cmake_install()
vcpkg_cmake_config_fixup(CONFIG_PATH share/sjpeg/cmake)

file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/include")
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/share")
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/share/man")

file(INSTALL "${SOURCE_PATH}/COPYING" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}" RENAME copyright)
17 changes: 17 additions & 0 deletions ports/sjpeg/vcpkg.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{
"name": "sjpeg",
"version-date": "2021-10-31",
"description": "Simple library for encoding baseline JPEG files",
"homepage": "https://github.com/webmproject/sjpeg",
"license": "Apache-2.0",
"dependencies": [
{
"name": "vcpkg-cmake",
"host": true
},
{
"name": "vcpkg-cmake-config",
"host": true
}
]
}
4 changes: 4 additions & 0 deletions versions/baseline.json
Original file line number Diff line number Diff line change
Expand Up @@ -6232,6 +6232,10 @@
"baseline": "2018-08-31",
"port-version": 5
},
"sjpeg": {
"baseline": "2021-10-31",
"port-version": 0
},
"skia": {
"baseline": "2020-05-18",
"port-version": 5
Expand Down
9 changes: 9 additions & 0 deletions versions/s-/sjpeg.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"versions": [
{
"git-tree": "fe20a97b3cdd0a6ad84ca9543670ea61673d1026",
"version-date": "2021-10-31",
"port-version": 0
}
]
}

0 comments on commit f012fae

Please sign in to comment.