termux-packages/packages/exiftool/build.sh

20 lines
1.0 KiB
Bash
Raw Normal View History

2019-11-10 17:30:55 +01:00
TERMUX_PKG_HOMEPAGE=https://www.sno.phy.queensu.ca/~phil/exiftool/index.html
TERMUX_PKG_DESCRIPTION="Utility for reading, writing and editing meta information in a wide variety of files."
TERMUX_PKG_LICENSE="Artistic-License-2.0"
TERMUX_PKG_MAINTAINER="Leonid Plyushch <leonid.plyushch@gmail.com>"
2020-01-11 19:49:08 +01:00
TERMUX_PKG_VERSION=11.84
2019-11-10 17:30:55 +01:00
TERMUX_PKG_SRCURL="https://www.sno.phy.queensu.ca/~phil/exiftool/Image-ExifTool-$TERMUX_PKG_VERSION.tar.gz"
2020-01-11 19:49:08 +01:00
TERMUX_PKG_SHA256=4bd935abf0be4139810f147edb19f6bd470d573bd2fa2b5a0b832d0f4cb8116d
2019-11-10 17:30:55 +01:00
TERMUX_PKG_DEPENDS="perl"
termux_step_make_install() {
# Change this after package 'perl' was upgraded.
2019-12-21 18:00:33 +01:00
local current_perl_version=5.30.1
2019-11-10 17:30:55 +01:00
install -Dm700 "$TERMUX_PKG_SRCDIR"/exiftool "$TERMUX_PREFIX"/bin/exiftool
find "$TERMUX_PKG_SRCDIR"/lib -name "*.pod" -delete
mkdir -p "$TERMUX_PREFIX/lib/perl5/site_perl/${current_perl_version}"
rm -rf "$TERMUX_PREFIX/lib/perl5/site_perl/${current_perl_version}"/{Image,File}
cp -a "$TERMUX_PKG_SRCDIR"/lib/{Image,File} "$TERMUX_PREFIX/lib/perl5/site_perl/${current_perl_version}/"
}