7c9d09fb27
gettext: update from 0.20.2 to 0.21 gifski: update from 0.10.4 to 1.2.0 git-delta: update from 0.3.0 to 0.4.1
19 lines
1.0 KiB
Bash
19 lines
1.0 KiB
Bash
TERMUX_PKG_HOMEPAGE=https://exiftool.org/
|
|
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 Pliushch <leonid.pliushch@gmail.com>"
|
|
TERMUX_PKG_VERSION=12.04
|
|
TERMUX_PKG_SRCURL="http://www.sno.phy.queensu.ca/~phil/exiftool/Image-ExifTool-$TERMUX_PKG_VERSION.tar.gz"
|
|
TERMUX_PKG_SHA256=5bac86c5e4a5efb6777cbd92c166a6183d7e9db8e1ff969fcaaac042fe62a0bb
|
|
TERMUX_PKG_DEPENDS="perl"
|
|
|
|
termux_step_make_install() {
|
|
local current_perl_version=$(. $TERMUX_SCRIPTDIR/packages/perl/build.sh; echo $TERMUX_PKG_VERSION)
|
|
|
|
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}/"
|
|
}
|