0
0
mirror of https://github.com/libretro/Lakka-LibreELEC.git synced 2025-01-08 10:48:19 +00:00
2023-05-05 14:03:17 +00:00

40 lines
1.2 KiB
Makefile

# SPDX-License-Identifier: GPL-2.0
# Copyright (C) 2016-present Team LibreELEC (https://libreelec.tv)
PKG_NAME="libzen"
PKG_VERSION="0.4.41"
PKG_SHA256="933bad3b7ecd29dc6bdc88a83645c83dfd098c15b0b90d6177a37fa1536704e8"
PKG_LICENSE="GPL"
PKG_SITE="https://mediaarea.net/en/MediaInfo/"
PKG_URL="https://mediaarea.net/download/source/libzen/${PKG_VERSION}/libzen_${PKG_VERSION}.tar.xz"
PKG_DEPENDS_TARGET="toolchain"
PKG_LONGDESC="MediaInfo is a convenient unified display of the most relevant technical and tag data for video and audio files"
PKG_TOOLCHAIN="manual"
PKG_BUILD_FLAGS="-sysroot"
configure_target() {
cd Project/GNU/Library
do_autoreconf
./configure \
--host=${TARGET_NAME} \
--build=${HOST_NAME} \
--enable-static \
--disable-shared \
--prefix=/usr
}
make_target() {
make
}
makeinstall_target() {
mkdir -p ${INSTALL}/usr/include/ZenLib ${INSTALL}/usr/lib/pkgconfig
cp -aP ../../../Source/ZenLib/*.h ${INSTALL}/usr/include/ZenLib
for i in HTTP_Client Format/Html Format/Http; do
mkdir -p ${INSTALL}/usr/include/ZenLib/${i}/
cp -aP ../../../Source/ZenLib/${i}/*.h ${INSTALL}/usr/include/ZenLib/${i}/
done
cp -P .libs/* ${INSTALL}/usr/lib
cp -P libzen.pc ${INSTALL}/usr/lib/pkgconfig
}