You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
641 B
18 lines
641 B
TERMUX_PKG_HOMEPAGE=http://x265.org/
|
|
TERMUX_PKG_DESCRIPTION="H.265/HEVC video stream encoder library"
|
|
TERMUX_PKG_LICENSE="GPL-2.0"
|
|
TERMUX_PKG_VERSION=3.2.1
|
|
TERMUX_PKG_SRCURL=https://bitbucket.org/multicoreware/x265/downloads/x265_$TERMUX_PKG_VERSION.tar.gz
|
|
TERMUX_PKG_SHA256=fb9badcf92364fd3567f8b5aa0e5e952aeea7a39a2b864387cec31e3b58cbbcc
|
|
TERMUX_PKG_DEPENDS="libc++"
|
|
TERMUX_PKG_BREAKS="libx265-dev"
|
|
TERMUX_PKG_REPLACES="libx265-dev"
|
|
|
|
termux_step_pre_configure() {
|
|
if [ $TERMUX_ARCH = "i686" ]; then
|
|
# Avoid text relocations.
|
|
TERMUX_PKG_EXTRA_CONFIGURE_ARGS="-DENABLE_ASSEMBLY=OFF"
|
|
fi
|
|
TERMUX_PKG_SRCDIR="$TERMUX_PKG_SRCDIR/source"
|
|
}
|
|
|
|
|