34 lines
1003 B
Bash
34 lines
1003 B
Bash
TERMUX_PKG_HOMEPAGE=https://gitlab.com/berdyansk/astra-sm
|
|
TERMUX_PKG_DESCRIPTION="Software for digital TV broadcasting"
|
|
TERMUX_PKG_LICENSE="GPL-3.0"
|
|
TERMUX_PKG_MAINTAINER="@termux"
|
|
_COMMIT=44bcd2852b7f315233267f639730e0e21b9b6c22
|
|
TERMUX_PKG_VERSION=2019.06.19
|
|
TERMUX_PKG_SRCURL=https://github.com/OpenVisionE2/astra-sm.git
|
|
TERMUX_PKG_GIT_BRANCH=staging
|
|
TERMUX_PKG_DEPENDS="libdvbcsa, liblua53"
|
|
TERMUX_PKG_BUILD_IN_SRC=true
|
|
TERMUX_PKG_EXTRA_CONFIGURE_ARGS="
|
|
--with-lua-includes=$TERMUX_PREFIX/include/lua5.3
|
|
--with-lua-libs=$TERMUX_PREFIX/lib/liblua5.3.so
|
|
--with-lua-compiler=no
|
|
--with-ffmpeg=no
|
|
--with-libcrypto=no
|
|
"
|
|
|
|
termux_step_post_get_source() {
|
|
git fetch --unshallow
|
|
git checkout $_COMMIT
|
|
|
|
local version="$(git log -1 --format=%cs | sed 's/-/./g')"
|
|
if [ "$version" != "$TERMUX_PKG_VERSION" ]; then
|
|
echo -n "ERROR: The specified version \"$TERMUX_PKG_VERSION\""
|
|
echo " is different from what is expected to be: \"$version\""
|
|
return 1
|
|
fi
|
|
}
|
|
|
|
termux_step_pre_configure() {
|
|
autoreconf -fi
|
|
}
|