Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions THIRD-PARTY-NOTICES.json
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,14 @@
"license": "BSD 2-Clause",
"licenseURL": "https://raw.githubusercontent.com/lovell/libimagequant/main/COPYRIGHT"
},
{
"name": "LibRaw",
"license": "CDDL-1.0 or LGPL-2.1",
"licenseURL": [
"https://raw.githubusercontent.com/LibRaw/LibRaw/refs/heads/master/LICENSE.CDDL",
"https://raw.githubusercontent.com/LibRaw/LibRaw/refs/heads/master/LICENSE.LGPL"
]
},
{
"name": "mozjpeg",
"license": "zlib License, IJG License, BSD-3-Clause",
Expand Down
1 change: 1 addition & 0 deletions THIRD-PARTY-NOTICES.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ used under the terms of the following licences:
| libimagequant | [BSD 2-Clause](https://github.com/lovell/libimagequant/blob/main/COPYRIGHT) |
| libnsgif | MIT Licence |
| libpng | [libpng License](https://github.com/pnggroup/libpng/blob/master/LICENSE) |
| LibRaw | [CDDL-1.0 or LGPL-2.1](https://www.libraw.org/docs) |
| librsvg | LGPLv3 |
| libspng | [BSD 2-Clause, libpng License](https://github.com/randy408/libspng/blob/master/LICENSE) |
| libtiff | [libtiff License](https://gitlab.com/libtiff/libtiff/blob/master/LICENSE.md) (BSD-like) |
Expand Down
10 changes: 9 additions & 1 deletion build/posix.sh
Original file line number Diff line number Diff line change
Expand Up @@ -214,6 +214,13 @@ cmake -G"Unix Makefiles" \
-DBUILD_SHARED_LIBS=FALSE -DWITH_JPEG8=1 -DWITH_TURBOJPEG=FALSE -DPNG_SUPPORTED=FALSE
make install/strip

mkdir ${DEPS}/libraw
$CURL https://www.libraw.org/data/LibRaw-${VERSION_LIBRAW}.tar.gz | tar xzC ${DEPS}/libraw --strip-components=1
cd ${DEPS}/libraw
CFLAGS="${CFLAGS} -O3" CXXFLAGS="${CXXFLAGS} -O3" ./configure --host=${CHOST} --prefix=${TARGET} --enable-static --disable-shared --disable-dependency-tracking \
--disable-openmp --enable-jpeg --enable-zlib --enable-lcms --disable-examples
make install-strip

mkdir ${DEPS}/png
$CURL https://github.com/pnggroup/libpng/archive/v${VERSION_PNG}.tar.gz | tar xzC ${DEPS}/png --strip-components=1
cd ${DEPS}/png
Expand Down Expand Up @@ -438,7 +445,7 @@ CFLAGS="${CFLAGS} -O3" CXXFLAGS="${CXXFLAGS} -O3" meson setup _build --default-l
-Ddeprecated=false -Dexamples=false -Dintrospection=disabled -Dmodules=disabled -Dcfitsio=disabled -Dfftw=disabled -Djpeg-xl=disabled \
${WITHOUT_HIGHWAY:+-Dhighway=disabled} -Dorc=disabled -Dmagick=disabled -Dmatio=disabled -Dnifti=disabled -Dopenexr=disabled \
-Dopenslide=disabled -Dpdfium=disabled -Dquantizr=disabled \
-Dopenjpeg=enabled -Dpoppler=enabled \
-Dopenjpeg=enabled -Dpoppler=enabled -Draw=enabled \
-Dppm=false -Danalyze=false -Dradiance=false \
${LINUX:+-Dcpp_link_args="$LDFLAGS -Wl,-Bsymbolic-functions -Wl,--version-script=$DEPS/vips/vips.map $EXCLUDE_LIBS"}
meson install -C _build --tag runtime,devel
Expand Down Expand Up @@ -511,6 +518,7 @@ printf "{\n\
\"highway\": \"${VERSION_HWY}\",\n\
\"imagequant\": \"${VERSION_IMAGEQUANT}\",\n\
\"lcms\": \"${VERSION_LCMS}\",\n\
\"libraw\": \"${VERSION_LIBRAW}\",\n\
\"mozjpeg\": \"${VERSION_MOZJPEG}\",\n\
\"openjpeg\": \"${VERSION_OPENJPEG}\",\n\
\"pango\": \"${VERSION_PANGO}\",\n\
Expand Down
1 change: 1 addition & 0 deletions check-latest-versions.sh
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ version_latest "harfbuzz" "$VERSION_HARFBUZZ" "1299"
version_latest "heif" "$VERSION_HEIF" "strukturag/libheif"
version_latest "highway" "$VERSION_HWY" "205809"
version_latest "lcms" "$VERSION_LCMS" "9815"
version_latest "libraw" "$VERSION_LIBRAW" "LibRaw/LibRaw"
#version_latest "mozjpeg" "$VERSION_MOZJPEG" "mozilla/mozjpeg" # use commit SHA until next tagged release
version_latest "pango" "$VERSION_PANGO" "11783" "unstable"
version_latest "pixman" "$VERSION_PIXMAN" "3648"
Expand Down
3 changes: 2 additions & 1 deletion versions.properties
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ VERSION_HWY=1.3.0
VERSION_IMAGEQUANT=2.4.1
VERSION_JXL=0.11.1
VERSION_LCMS=2.17
VERSION_LIBRAW=0.22.1
VERSION_MOZJPEG=0826579
VERSION_OPENJPEG=2.5.4
VERSION_PANGO=1.57.0
Expand All @@ -26,7 +27,7 @@ VERSION_PROXY_LIBINTL=0.5
VERSION_RSVG=2.61.2
VERSION_SPNG=0.7.4
VERSION_TIFF=4.7.1
VERSION_VIPS=8.17.3
VERSION_VIPS=8.18.2
VERSION_WEBP=1.6.0
VERSION_XML2=2.15.1
VERSION_ZLIB_NG=2.2.5