Files
termux-packages/packages/libimobiledevice/build.sh

36 lines
1.3 KiB
Bash

TERMUX_PKG_HOMEPAGE=https://libimobiledevice.org/
TERMUX_PKG_DESCRIPTION="A library to communicate with services on iOS devices using native protocols"
TERMUX_PKG_LICENSE="LGPL-2.1-or-later"
_COMMIT=a6b6c35d1550acbd2552d49c2fe38115deec8fc0
_COMMIT_DATE=20250228
TERMUX_PKG_MAINTAINER="@termux"
TERMUX_PKG_VERSION=1.3.0-p${_COMMIT_DATE}
TERMUX_PKG_REVISION=3
TERMUX_PKG_SRCURL=git+https://github.com/libimobiledevice/libimobiledevice
TERMUX_PKG_SHA256=262a9c35252bf1418de40454268cfd958012c25aab8b6f8067673717b9db9e42
TERMUX_PKG_GIT_BRANCH=master
TERMUX_PKG_AUTO_UPDATE=true
TERMUX_PKG_DEPENDS="libimobiledevice-glue, libplist, libtatsu, libusbmuxd, openssl, usbmuxd"
termux_step_post_get_source() {
git fetch --unshallow
git checkout $_COMMIT
local pdate="p$(git log -1 --format=%cs | sed 's/-//g')"
if [[ "$TERMUX_PKG_VERSION" != *"${pdate}" ]]; then
echo -n "ERROR: The version string \"$TERMUX_PKG_VERSION\" is"
echo -n " different from what is expected to be; should end"
echo " with \"${pdate}\"."
return 1
fi
local s=$(find . -type f ! -path '*/.git/*' -print0 | xargs -0 sha256sum | LC_ALL=C sort | sha256sum)
if [[ "${s}" != "${TERMUX_PKG_SHA256} "* ]]; then
termux_error_exit "Checksum mismatch for source files."
fi
}
termux_step_pre_configure() {
autoreconf -fi
}