1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-29 13:47:34 +00:00

Ports: Add SerenityOS theming repository code as ported software

This commit is contained in:
Liav A 2022-05-28 11:28:04 +03:00 committed by Linus Groh
parent 3c1f899050
commit be3fec7c9e
2 changed files with 23 additions and 0 deletions

View file

@ -0,0 +1,22 @@
#!/usr/bin/env -S bash ../.port_include.sh
port=serenity-theming
version=52a65ad2eb09238a1a0015b522001d02fceefd06
workdir="theming-${version}"
files="https://github.com/SerenityOS/theming/archive/${version}.zip serenity-theming-${version}.zip 0c2ce77b6e21dd8e991c34de0cea596e1e3cb4862cd70700394721551af4be2e"
auth_type="sha256"
build() {
:
}
install() {
:
}
post_install() {
cp -r "${workdir}/icon-themes" "${SERENITY_INSTALL_ROOT}/res/"
cp -r "${workdir}/cursor-themes" "${SERENITY_INSTALL_ROOT}/res/"
cp -r "${workdir}/icons" "${SERENITY_INSTALL_ROOT}/res/"
cp -r "${workdir}/themes" "${SERENITY_INSTALL_ROOT}/res/"
cp -r "${workdir}/fonts" "${SERENITY_INSTALL_ROOT}/res/"
}