mirror of
https://github.com/libretro/Lakka-LibreELEC.git
synced 2025-01-07 12:38:21 +00:00
21 lines
836 B
Makefile
21 lines
836 B
Makefile
# SPDX-License-Identifier: GPL-2.0-only
|
|
# Copyright (C) 2017-present Team LibreELEC (https://libreelec.tv)
|
|
|
|
PKG_NAME="comskip"
|
|
PKG_VERSION="6e66de54358498aa276d233f5b3e7fa673526af1"
|
|
PKG_SHA256="412f0cc543cbe327b36b0354c00ace260c996e95dd95cb585ca58dd52c926607"
|
|
PKG_LICENSE="GPL"
|
|
PKG_SITE="http://www.kaashoek.com/comskip/"
|
|
PKG_URL="https://github.com/erikkaashoek/Comskip/archive/${PKG_VERSION}.tar.gz"
|
|
PKG_DEPENDS_TARGET="toolchain argtable2 ffmpegx"
|
|
PKG_DEPENDS_CONFIG="argtable2 ffmpegx"
|
|
PKG_LONGDESC="Comskip detects commercial breaks from a video stream. It can be used for post-processing recordings."
|
|
PKG_TOOLCHAIN="autotools"
|
|
PKG_BUILD_FLAGS="-sysroot"
|
|
|
|
pre_configure_target() {
|
|
# pass ffmpegx to build
|
|
CFLAGS+=" -I$(get_install_dir ffmpegx)/usr/local/include"
|
|
LDFLAGS+=" -L$(get_install_dir ffmpegx)/usr/local/lib -ldl"
|
|
}
|