22 lines
767 B
Makefile
22 lines
767 B
Makefile
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
# Copyright (C) 2019-present Shanti Gilbert (https://github.com/shantigilbert)
|
|
# Copyright (C) 2022-present Fewtarius
|
|
|
|
PKG_NAME="mpv"
|
|
PKG_VERSION="af9b53f3a3831531504906882efce0d979506ed3"
|
|
PKG_LICENSE="GPLv2+"
|
|
PKG_SITE="https://github.com/mpv-player/mpv"
|
|
PKG_URL="${PKG_SITE}/archive/${PKG_VERSION}.tar.gz"
|
|
PKG_DEPENDS_TARGET="toolchain ffmpeg SDL2 luajit libass waf:host"
|
|
PKG_LONGDESC="Video player based on MPlayer/mplayer2 https://mpv.io"
|
|
|
|
if [ ! "${OPENGL}" = "no" ]; then
|
|
PKG_DEPENDS_TARGET+=" ${OPENGL} glu libglvnd"
|
|
PKG_MESON_OPTS_TARGET+=" -Dgl=enabled -Degl=disabled"
|
|
fi
|
|
|
|
if [ "${OPENGLES_SUPPORT}" = yes ]; then
|
|
PKG_DEPENDS_TARGET+=" ${OPENGLES}"
|
|
PKG_MESON_OPTS_TARGET+=" -Dgl=disabled -Degl=enabled"
|
|
fi
|
|
|