mirror of
https://github.com/libretro/Lakka-LibreELEC.git
synced 2024-11-25 10:46:19 +00:00
16 lines
441 B
Makefile
16 lines
441 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
# Copyright (C) 2020-present Team LibreELEC (https://libreelec.tv)
|
|
|
|
. $(get_pkg_directory libxkbcommon)/package.mk
|
|
|
|
PKG_NAME="chrome-libxkbcommon"
|
|
PKG_LONGDESC="libxkbcommon for chrome"
|
|
PKG_URL=""
|
|
PKG_DEPENDS_UNPACK+=" libxkbcommon"
|
|
PKG_BUILD_FLAGS="-sysroot"
|
|
|
|
unpack() {
|
|
mkdir -p ${PKG_BUILD}
|
|
tar --strip-components=1 -xf ${SOURCES}/${PKG_NAME:7}/${PKG_NAME:7}-${PKG_VERSION}.tar.xz -C ${PKG_BUILD}
|
|
}
|