mirror of
https://github.com/termux-pacman/termux-packages.git
synced 2026-01-01 00:20:30 +00:00
88 lines
3.5 KiB
Bash
88 lines
3.5 KiB
Bash
TERMUX_PKG_HOMEPAGE=https://ptitseb.github.io/gl4es/
|
|
TERMUX_PKG_DESCRIPTION="OpenGL driver for GLES devices"
|
|
TERMUX_PKG_LICENSE="MIT"
|
|
TERMUX_PKG_MAINTAINER="@termux"
|
|
_COMMIT=22af242aa2b268aa851652dfa4e0f4adc3b0c416
|
|
_COMMIT_DATE=20230404
|
|
_COMMIT_TIME=213926
|
|
TERMUX_PKG_VERSION="1.1.4.20230404.213926g22af242a"
|
|
TERMUX_PKG_SRCURL=git+https://github.com/ptitSeb/gl4es
|
|
TERMUX_PKG_GIT_BRANCH=master
|
|
TERMUX_PKG_DEPENDS="libx11"
|
|
TERMUX_PKG_AUTO_UPDATE=true
|
|
TERMUX_PKG_ENABLE_CLANG16_PORTING=false
|
|
TERMUX_PKG_EXTRA_CONFIGURE_ARGS="
|
|
-DTERMUX=ON
|
|
-DCMAKE_SYSTEM_NAME=Linux
|
|
"
|
|
|
|
# this should only be used until release new version
|
|
termux_pkg_auto_update() {
|
|
local latest_commit=$(curl -s https://api.github.com/repos/ptitSeb/gl4es/commits | jq .[].sha | head -1 | sed -e 's|\"||g')
|
|
if [[ -z "${latest_commit}" ]]; then
|
|
echo "WARN: Unable to get latest commit from upstream. Try again later." >&2
|
|
return 0
|
|
fi
|
|
|
|
if [[ "${latest_commit}" == "${_COMMIT}" ]]; then
|
|
echo "INFO: No update needed. Already at version '${TERMUX_PKG_VERSION}'."
|
|
return 0
|
|
fi
|
|
|
|
local latest_commit_date_tz=$(curl -s "https://api.github.com/repos/ptitSeb/gl4es/commits/${latest_commit}" | jq .commit.committer.date | sed -e 's|\"||g')
|
|
if [[ -z "${latest_commit_date_tz}" ]]; then
|
|
termux_error_exit "ERROR: Unable to get latest commit date info"
|
|
fi
|
|
|
|
local latest_commit_date=$(echo "${latest_commit_date_tz}" | sed -e 's|\(.*\)T\(.*\)Z|\1|' -e 's|\-||g')
|
|
local latest_commit_time=$(echo "${latest_commit_date_tz}" | sed -e 's|\(.*\)T\(.*\)Z|\2|' -e 's|\:||g')
|
|
|
|
# https://github.com/termux/termux-packages/issues/11827
|
|
# really fix it by including longer date time info into versioning
|
|
# always check this in case upstream change the version format
|
|
local latest_version="1.1.4.${latest_commit_date}.${latest_commit_time}g${latest_commit:0:8}"
|
|
|
|
local current_date_epoch=$(date "+%s")
|
|
local _COMMIT_DATE_epoch=$(date -d "${_COMMIT_DATE}" "+%s")
|
|
local current_date_diff=$(((current_date_epoch-_COMMIT_DATE_epoch)/(60*60*24)))
|
|
if [[ "${current_date_diff}" -lt 7 ]]; then
|
|
echo "INFO: Queuing updates after 7 days since last push, currently its ${current_date_diff}"
|
|
return 0
|
|
fi
|
|
|
|
if ! dpkg --compare-versions "${latest_version}" gt "${TERMUX_PKG_VERSION}"; then
|
|
termux_error_exit "ERROR: Resulting latest version is not counted as update to the current version (${latest_version} < ${TERMUX_PKG_VERSION})"
|
|
fi
|
|
|
|
# unlikely to happen
|
|
if [[ "${latest_commit_date}" -lt "${_COMMIT_DATE}" ]]; then
|
|
termux_error_exit "ERROR: Upstream is older than current package version. Please report to upstream."
|
|
elif [[ "${latest_commit_date}" -eq "${_COMMIT_DATE}" ]] && [[ "${latest_commit_time}" -lt "${_COMMIT_TIME}" ]]; then
|
|
termux_error_exit "ERROR: Upstream is older than current package version. Please report to upstream."
|
|
fi
|
|
|
|
sed -i "${TERMUX_PKG_BUILDER_DIR}/build.sh" \
|
|
-e "s|^_COMMIT=.*|_COMMIT=${latest_commit}|" \
|
|
-e "s|^_COMMIT_DATE=.*|_COMMIT_DATE=${latest_commit_date}|" \
|
|
-e "s|^_COMMIT_TIME=.*|_COMMIT_TIME=${latest_commit_time}|"
|
|
|
|
# maybe save a few ms as we already done version check
|
|
termux_pkg_upgrade_version "${latest_version}" --skip-version-check
|
|
}
|
|
|
|
termux_step_post_get_source() {
|
|
git fetch --unshallow
|
|
git checkout "${_COMMIT}"
|
|
}
|
|
|
|
termux_step_pre_configure() {
|
|
# benchmark result as follows:
|
|
# -O2 -flto > -O3 -flto > -O2 > -Os > -Os -flto > -O3 > -Oz > -Oz -flto
|
|
export CFLAGS="${CFLAGS/-Oz/-O2} -flto"
|
|
}
|
|
|
|
termux_step_post_make_install() {
|
|
rm -fr "${TERMUX_PREFIX}/lib/gl4es/libGL.so"
|
|
ln -fs "libGL.so.1" "${TERMUX_PREFIX}/lib/gl4es/libGL.so"
|
|
}
|