20 lines
707 B
Makefile
20 lines
707 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) 2023 JELOS (https://github.com/JustEnoughLinuxOS)
|
|
|
|
PKG_NAME="es-theme-art-book-next"
|
|
PKG_VERSION="da0c1cb9f78b197b592c0f274c2a564ee2e248c0"
|
|
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}
|
|
}
|