58769c80d3
* Update games to use .config/game/configs moving configurations out of the system config root. * Split modules into a separate package (packages/misc/modules). * Remove some unused packages and move a few virtual packages to packages/virtual.
21 lines
486 B
Makefile
21 lines
486 B
Makefile
# SPDX-License-Identifier: Apache-2.0
|
|
# Copyright (C) 2020-present Fewtarius
|
|
|
|
PKG_NAME="modules"
|
|
PKG_VERSION="${OS_VERSION}"
|
|
PKG_ARCH="any"
|
|
PKG_LICENSE="apache2"
|
|
PKG_SITE=""
|
|
PKG_URL=""
|
|
PKG_DEPENDS_TARGET="toolchain ${OPENGLES}"
|
|
PKG_SHORTDESC="OS Modules Package"
|
|
PKG_LONGDESC="OS Modules Package"
|
|
PKG_IS_ADDON="no"
|
|
PKG_AUTORECONF="no"
|
|
PKG_TOOLCHAIN="manual"
|
|
|
|
makeinstall_target() {
|
|
mkdir -p ${INSTALL}/usr/config/modules
|
|
cp -rf ${PKG_DIR}/sources/* ${INSTALL}/usr/config/modules
|
|
}
|
|
|