mirror of
https://github.com/archr-linux/Arch-R.git
synced 2026-03-31 14:41:55 -07:00
26 lines
1.2 KiB
Makefile
26 lines
1.2 KiB
Makefile
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
# Copyright (C) 2009-2016 Stephan Raue (stephan@openelec.tv)
|
|
|
|
PKG_NAME="libass"
|
|
PKG_VERSION="0.13.7"
|
|
PKG_SHA256="7065e5f5fb76e46f2042a62e7c68d81e5482dbeeda24644db1bd066e44da7e9d"
|
|
PKG_ARCH="any"
|
|
PKG_LICENSE="BSD"
|
|
PKG_SITE="https://github.com/libass/libass"
|
|
PKG_URL="https://github.com/libass/libass/releases/download/$PKG_VERSION/$PKG_NAME-$PKG_VERSION.tar.xz"
|
|
PKG_DEPENDS_TARGET="toolchain freetype fontconfig fribidi"
|
|
PKG_SECTION="multimedia"
|
|
PKG_SHORTDESC="libass: a portable subtitle renderer for the ASS/SSA (Advanced Substation Alpha/Substation Alpha) subtitle format."
|
|
PKG_LONGDESC="libass is a portable subtitle renderer for the ASS/SSA (Advanced Substation Alpha/Substation Alpha) subtitle format. It is mostly compatible with VSFilter"
|
|
|
|
PKG_CONFIGURE_OPTS_TARGET="--disable-test \
|
|
--enable-fontconfig \
|
|
--disable-harfbuzz \
|
|
--disable-silent-rules \
|
|
--with-gnu-ld"
|
|
|
|
if [ $TARGET_ARCH = "x86_64" ]; then
|
|
PKG_DEPENDS_TARGET="$PKG_DEPENDS_TARGET yasm:host"
|
|
PKG_CONFIGURE_OPTS_TARGET="$PKG_CONFIGURE_OPTS_TARGET --enable-asm"
|
|
fi
|