mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2026-02-15 08:41:16 -05:00
Bumps [github.com/kovidgoyal/imaging](https://github.com/kovidgoyal/imaging) from 1.7.2 to 1.8.17. - [Release notes](https://github.com/kovidgoyal/imaging/releases) - [Changelog](https://github.com/kovidgoyal/imaging/blob/master/.goreleaser.yaml) - [Commits](https://github.com/kovidgoyal/imaging/compare/v1.7.2...v1.8.17) --- updated-dependencies: - dependency-name: github.com/kovidgoyal/imaging dependency-version: 1.8.17 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
19 lines
538 B
Bash
19 lines
538 B
Bash
#!/bin/bash
|
|
#
|
|
# custom-lcms.sh
|
|
# Copyright (C) 2025 Kovid Goyal <kovid at kovidgoyal.net>
|
|
#
|
|
# Distributed under terms of the MIT license.
|
|
#
|
|
dist=`pwd`/lcms/dist
|
|
libdir="$dist/lib"
|
|
cd lcms
|
|
if [[ ! -d "$dist" ]]; then
|
|
./configure --prefix="$dist" || exit 1
|
|
fi
|
|
echo "Building lcms..." && \
|
|
make -j8 >/dev/null&& make install >/dev/null&& cd .. && \
|
|
echo "lcms in -- $libdir" && \
|
|
CGO_LDFLAGS="-L$libdir" go test -tags lcms2cgo -run Develop -v -c ./prism && \
|
|
LD_LIBRARY_PATH="$libdir" exec ./prism.test -test.run Develop
|