mirror of
https://github.com/libretro/Lakka-LibreELEC.git
synced 2024-11-24 05:36:17 +00:00
d758cd4728
Signed-off-by: Ian Leonard <antonlacon@gmail.com>
37 lines
1.4 KiB
Makefile
37 lines
1.4 KiB
Makefile
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
# Copyright (C) 2009-2016 Stephan Raue (stephan@openelec.tv)
|
|
# Copyright (C) 2020-present Team LibreELEC (https://libreelec.tv)
|
|
|
|
PKG_NAME="libcdio"
|
|
PKG_VERSION="2.1.0"
|
|
PKG_SHA256="8550e9589dbd594bfac93b81ecf129b1dc9d0d51e90f9696f1b2f9b2af32712b"
|
|
PKG_LICENSE="GPLv3"
|
|
PKG_SITE="https://www.gnu.org/software/libcdio/"
|
|
PKG_URL="http://ftpmirror.gnu.org/libcdio/${PKG_NAME}-${PKG_VERSION}.tar.bz2"
|
|
PKG_DEPENDS_TARGET="toolchain"
|
|
PKG_LONGDESC="A CD-ROM reading and control library."
|
|
PKG_BUILD_FLAGS="+pic"
|
|
|
|
# package specific configure options
|
|
PKG_CONFIGURE_OPTS_TARGET="--enable-cxx \
|
|
--disable-cpp-progs \
|
|
--disable-shared \
|
|
--enable-static \
|
|
--enable-joliet \
|
|
--disable-rpath \
|
|
--enable-rock \
|
|
--disable-cddb \
|
|
--disable-vcd-info \
|
|
--without-cd-drive \
|
|
--without-cd-info \
|
|
--without-cdda-player \
|
|
--without-cd-read \
|
|
--without-iso-info \
|
|
--without-iso-read \
|
|
--without-libiconv-prefix \
|
|
--with-gnu-ld"
|
|
|
|
post_makeinstall_target() {
|
|
rm -rf ${INSTALL}/usr/bin
|
|
}
|