Skip to main content

EXIFTOOL

This will be super quick... like... and... go!

ExifTool Source: https://github.com/exiftool/exiftool

#!/usr/bin/env bash
# INSTALL EXIFTOOL (by Phil Harvey)
#
# rev. 20250324
#

VER="13.25"

cd /opt

dnf -y install perl-Time-Piece perl-IO-Compress perl-Archive-Extract-lzma-unlzma perl-Archive-Zip perl-Time-Piece perl-Unicode-LineBreak
git clone -b ${VER} --depth 1 https://github.com/exiftool/exiftool.git

cd exiftool

perl Makefile.PL
make
make test && sleep 3
make install

ldconfig

exit

Phew!  That was fun!