e8b1b7abf2
Changes: - sets new defaults for new installs - updated system images ## Type of change - [x] Bug fix (non-breaking change which fixes an issue) - [x] New feature (non-breaking change which adds functionality) ## How Has This Been Tested Locally? Installed on my local devices and tested in Retrobat on my local PC ## Checklist: - [x] My code follows the style guidelines of this project - [x] I have performed a self-review of my own code - [x] I have commented my code, particularly in hard-to-understand areas - [x] I have made corresponding changes to the documentation
20 lines
672 B
Makefile
20 lines
672 B
Makefile
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
# Copyright (C) 2020 Shanti Gilbert (https://github.com/shantigilbert)
|
|
# Copyright (C) 2020 351ELEC team (https://github.com/fewtarius/351ELEC)
|
|
# Copyright (C) 2021 Fewtarius
|
|
|
|
PKG_NAME="es-theme-art-book-next"
|
|
PKG_VERSION="b231911544d89ead18e00c03670a336676d89147"
|
|
PKG_ARCH="any"
|
|
PKG_LICENSE="CUSTOM"
|
|
PKG_SITE="https://github.com/anthonycaccese/art-book-next-jelos"
|
|
PKG_URL="${PKG_SITE}.git"
|
|
GET_HANDLER_SUPPORT="git"
|
|
PKG_SHORTDESC="Art Book Next"
|
|
PKG_LONGDESC="Art Book Next"
|
|
PKG_TOOLCHAIN="manual"
|
|
|
|
makeinstall_target() {
|
|
mkdir -p ${INSTALL}/usr/share/themes/${PKG_NAME}
|
|
cp -rf * ${INSTALL}/usr/share/themes/${PKG_NAME}
|
|
}
|