mirror of
https://github.com/termux-pacman/termux-packages.git
synced 2026-02-12 12:50:51 +00:00
- These can now be handled by `termux_pkg_upgrade_version` itself - Also fix up the `TERMUX_PKG_UPDATE_TAG_TYPE` for a few packages %ci:no-build
23 lines
881 B
Bash
23 lines
881 B
Bash
TERMUX_PKG_HOMEPAGE=https://code.videolan.org/videolan/libdvdread
|
|
TERMUX_PKG_DESCRIPTION="A library that allows easy use of sophisticated DVD navigation features"
|
|
TERMUX_PKG_LICENSE="GPL-2.0"
|
|
TERMUX_PKG_MAINTAINER="@termux"
|
|
TERMUX_PKG_VERSION="7.0.1"
|
|
TERMUX_PKG_SRCURL=https://code.videolan.org/videolan/libdvdread/-/archive/${TERMUX_PKG_VERSION}/libdvdread-${TERMUX_PKG_VERSION}.tar.gz
|
|
TERMUX_PKG_SHA256=5eeda23c75405c89d04f4c601cbb99447477ea5c8c05b341c59da07b1651155b
|
|
TERMUX_PKG_AUTO_UPDATE=true
|
|
TERMUX_PKG_UPDATE_TAG_TYPE=newest-tag
|
|
|
|
termux_step_pre_configure() {
|
|
export TERMUX_MESON_ENABLE_SOVERSION=1
|
|
}
|
|
|
|
termux_step_post_massage() {
|
|
# Do not forget to bump revision of reverse dependencies and rebuild them
|
|
# after SOVERSION is changed.
|
|
local _GUARD_FILE="lib/libdvdread.so.8"
|
|
if [ ! -e "${_GUARD_FILE}" ]; then
|
|
termux_error_exit "file ${_GUARD_FILE} not found."
|
|
fi
|
|
}
|