2022-04-10 21:22:14 +00:00
|
|
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
# Copyright (C) 2022-present Fewtarius (https://github.com/fewtarius)
|
|
|
|
# Copyright (C) 2022-present BrooksyTech (https://github.com/brooksytech)
|
|
|
|
|
|
|
|
PKG_NAME="thememaster"
|
2022-06-30 10:41:38 +00:00
|
|
|
PKG_VERSION="09bee95fea09760355777af824a7ad41dc1ae577"
|
2022-09-24 13:47:40 +00:00
|
|
|
PKG_ARCH="aarch64"
|
2022-04-10 21:22:14 +00:00
|
|
|
PKG_SITE="https://github.com/JohnIrvine1433/ThemeMaster"
|
|
|
|
PKG_URL="${PKG_SITE}.git"
|
|
|
|
PKG_PRIORITY="optional"
|
|
|
|
PKG_SECTION="theme"
|
|
|
|
PKG_SHORTDESC="A simple tool that allows you to download various themes."
|
|
|
|
PKG_TOOLCHAIN="manual"
|
|
|
|
|
|
|
|
makeinstall_target() {
|
2022-04-14 19:25:58 +00:00
|
|
|
mkdir -p ${INSTALL}/usr/share
|
|
|
|
cp -r ${PKG_BUILD}/ThemeMaster ${INSTALL}/usr/share
|
|
|
|
cp ${PKG_BUILD}/ThemeMaster.sh ${INSTALL}/usr/share/ThemeMaster
|
2022-04-10 21:22:14 +00:00
|
|
|
chmod 0755 ${INSTALL}/usr/share/ThemeMaster ${INSTALL}/usr/share/ThemeMaster/ThemeMaster.sh
|
|
|
|
|
|
|
|
mkdir -p ${INSTALL}/usr/lib/autostart/common
|
|
|
|
cp ${PKG_DIR}/sources/autostart/common/* ${INSTALL}/usr/lib/autostart/common
|
|
|
|
}
|