mirror of
https://github.com/libretro/Lakka-LibreELEC.git
synced 2025-01-07 10:18:21 +00:00
19 lines
624 B
Makefile
19 lines
624 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
# Copyright (C) 2017-present Team LibreELEC (https://libreelec.tv)
|
|
|
|
PKG_NAME="x265"
|
|
PKG_VERSION="3.6"
|
|
PKG_SHA256="eccd9ee41ba64c55bb906ea79d28b563fdfb4fd3b7626746a0e5f8c9581491b5"
|
|
PKG_ARCH="x86_64"
|
|
PKG_LICENSE="GPL"
|
|
PKG_SITE="https://www.videolan.org/developers/x265.html"
|
|
PKG_URL="https://bitbucket.org/multicoreware/x265_git/get/${PKG_VERSION}.tar.bz2"
|
|
PKG_DEPENDS_TARGET="toolchain"
|
|
PKG_LONGDESC="x265 is a H.265/HEVC video encoder application library"
|
|
PKG_TOOLCHAIN="make"
|
|
|
|
pre_configure_target() {
|
|
LDFLAGS+=" -ldl"
|
|
cmake -DCMAKE_INSTALL_PREFIX=/usr -G "Unix Makefiles" ./source
|
|
}
|