97fff0bfd3
Signed-off-by: Michael Mayer <michael@photoprism.app>
58 lines
1.6 KiB
Bash
Executable file
58 lines
1.6 KiB
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
# Build "heif-convert", "heif-enc", "heif-info", and "heif-thumbnailer" from source.
|
|
CURRENT_DIR=$(pwd)
|
|
|
|
# Query architecture.
|
|
if [[ $PHOTOPRISM_ARCH ]]; then
|
|
SYSTEM_ARCH=$PHOTOPRISM_ARCH
|
|
else
|
|
SYSTEM_ARCH=$(uname -m)
|
|
fi
|
|
|
|
. /etc/os-release
|
|
|
|
LATEST=$(curl --silent "https://api.github.com/repos/strukturag/libheif/releases/latest" | grep '"tag_name":' | sed -E 's/.*"([^"]+)".*/\1/')
|
|
LIBHEIF_VERSION=${1:-$LATEST}
|
|
DESTARCH=${2:-$SYSTEM_ARCH}
|
|
|
|
BUILD="libheif-$VERSION_CODENAME-$DESTARCH-$LIBHEIF_VERSION"
|
|
|
|
DESTDIR="${CURRENT_DIR}/build/$BUILD"
|
|
|
|
mkdir -p "$DESTDIR"
|
|
|
|
ARCHIVE="${CURRENT_DIR}/build/$BUILD.tar.gz"
|
|
|
|
echo "------------------------------------------------"
|
|
echo "VERSION: $LIBHEIF_VERSION"
|
|
echo "LATEST : $LATEST"
|
|
echo "ARCHIVE: $ARCHIVE"
|
|
echo "------------------------------------------------"
|
|
|
|
echo "Installing build deps..."
|
|
|
|
sudo apt-get -qq update
|
|
sudo apt-get -qq install build-essential gcc g++ gettext git autoconf automake cmake libtool libjpeg8 libjpeg8-dev libde265-dev libaom-dev
|
|
|
|
cd "/tmp" || exit
|
|
rm -rf "/tmp/libheif"
|
|
|
|
echo "Cloning git repository..."
|
|
git clone -c advice.detachedHead=false -b "$LIBHEIF_VERSION" --depth 1 https://github.com/strukturag/libheif.git libheif
|
|
cd libheif || exit
|
|
./autogen.sh
|
|
./configure
|
|
make
|
|
|
|
# Install "heif-convert", "heif-enc", "heif-info", and "heif-thumbnailer" in "/usr/local".
|
|
echo "Installing binaries..."
|
|
DESTDIR=$DESTDIR make install-exec
|
|
cd "$CURRENT_DIR" || exit
|
|
rm -rf "/tmp/libheif"
|
|
|
|
# Create a tar archive to distribute the binaries.
|
|
echo "Creating $ARCHIVE..."
|
|
tar -czf "$ARCHIVE" -C "$DESTDIR/usr/local" bin lib
|
|
|
|
echo "Done."
|