0059607677
Set the postmarketOS wallpaper as default for Plasma Mobile and Plasma Desktop, so we can change it across all UIs with every postmarketOS release. It would be nice if we could just set the wallpaper with a simple config file (reported https://bugs.kde.org/show_bug.cgi?id=487816). Until that is possible, use a shell script as workaround. Copy the contents dir and metadata.json file explicitly, instead of copying the entire "meadow" directory. With this change we avoid copying meadow.svg, which fixes two issues: * This file doesn't have a stable name, when we switch to the next wallpaper and the user had selected it, the wallpaper will just be gone instead of automatically switching to the new wallpaper. * It shows up as broken wallpaper in Plasma's wallpaper selection. [ci:skip-build]: already built successfully in CI
128 lines
4.8 KiB
Text
128 lines
4.8 KiB
Text
# Maintainer: Oliver Smith <ollieparanoid@postmarketos.org>
|
|
pkgname=postmarketos-artwork
|
|
pkgver=5
|
|
pkgrel=3
|
|
pkgdesc="Meta package for the postmarketOS artwork"
|
|
url="https://postmarketos.org/"
|
|
arch="noarch"
|
|
license="CC-BY-SA-4.0"
|
|
_hash="f28dd5fef287c970f50ca49bc44814ee1e3b229d"
|
|
source="postmarketos-artwork-$_hash.tar.gz::https://gitlab.com/postmarketOS/artwork/-/archive/$_hash/artwork-$_hash.tar.gz
|
|
10_pmOS-wallpaper.gschema.override
|
|
postmarketos-gnome.xml
|
|
set-plasma-wallpaper.desktop
|
|
set-plasma-wallpaper.sh
|
|
"
|
|
subpackages="
|
|
$pkgname-wallpapers
|
|
$pkgname-wallpapers-extra:wallpapers_extra
|
|
$pkgname-wallpapers-gnome:wallpapers_gnome
|
|
$pkgname-wallpapers-plasma:wallpapers_plasma
|
|
$pkgname-icons
|
|
$pkgname-sounds
|
|
"
|
|
makedepends="
|
|
imagemagick
|
|
imagemagick-jpeg
|
|
"
|
|
options="!check pmb:cross-native"
|
|
builddir="$srcdir"/artwork-$_hash
|
|
|
|
package() {
|
|
mkdir -p "$pkgdir"
|
|
}
|
|
|
|
wallpapers() {
|
|
pkgdesc="Wallpapers for postmarketOS"
|
|
|
|
mkdir -p "$subpkgdir"/usr/share/wallpapers/postmarketos
|
|
|
|
# To avoid complexity, we only package the most recent wallpaper.
|
|
# Checklist for changing the wallpaper:
|
|
# - Add the new wallpaper here: https://postmarketos.org/wallpapers
|
|
# - Adjust the path in the "cp" line below
|
|
# - If paths inside the wallpaper dir (e.g. 2024/meadow) are different,
|
|
# then adjust them here:
|
|
# - postmarketos.jpg symlink/conversion below
|
|
# - postmarketos-gnome.xml
|
|
# - 10_pmOS-wallpaper.gschema.override
|
|
for i in contents metadata.json; do
|
|
cp -r "$builddir"/wallpapers/2024/meadow/"$i" \
|
|
"$subpkgdir"/usr/share/wallpapers/postmarketos/"$i"
|
|
done
|
|
|
|
# /usr/share/wallpapers/postmarketos.jpg should always point to the
|
|
# current wallpaper so we don't break configs
|
|
convert "$subpkgdir"/usr/share/wallpapers/postmarketos/contents/images/2707x2707.png \
|
|
-format jpeg \
|
|
"$subpkgdir"/usr/share/wallpapers/postmarketos.jpg
|
|
}
|
|
|
|
wallpapers_extra() {
|
|
pkgdesc="Additional Wallpapers for postmarketOS"
|
|
|
|
mkdir -p "$subpkgdir"/usr/share/wallpapers/
|
|
install -Dm644 "$builddir"/wallpapers/extra/* \
|
|
"$subpkgdir"/usr/share/wallpapers/
|
|
install -Dm644 "$builddir"/wallpapers/logo/postmarketos.jpg \
|
|
"$subpkgdir"/usr/share/wallpapers/postmarketos-light.jpg
|
|
install -Dm644 "$builddir"/wallpapers/logo/logo_dark.jpg \
|
|
"$subpkgdir"/usr/share/wallpapers/logo_dark.jpg
|
|
install -Dm644 "$builddir"/wallpapers/logo/pmos-grass-800x480.jpg \
|
|
"$subpkgdir"/usr/share/wallpapers/pmos-grass-800x480.jpg
|
|
install -Dm644 "$builddir"/wallpapers/logo/pmos-grass.jpg \
|
|
"$subpkgdir"/usr/share/wallpapers/pmos-grass.jpg
|
|
install -Dm644 "$builddir"/wallpapers/logo/pmos.jpg \
|
|
"$subpkgdir"/usr/share/wallpapers/pmos.jpg
|
|
}
|
|
|
|
wallpapers_gnome() {
|
|
pkgdesc="Wallpaper configuration for GNOME-based UIs"
|
|
replaces="postmarketos-base-ui-gnome-wallpaper-pmos"
|
|
install_if="postmarketos-artwork-wallpapers=$pkgver-r$pkgrel postmarketos-base-ui-gnome"
|
|
|
|
install -Dm644 "$srcdir"/postmarketos-gnome.xml \
|
|
-t "$subpkgdir"/usr/share/gnome-background-properties/
|
|
install -Dm644 "$srcdir"/10_pmOS-wallpaper.gschema.override \
|
|
-t "$subpkgdir"/usr/share/glib-2.0/schemas
|
|
}
|
|
|
|
wallpapers_plasma() {
|
|
pkgdesc="Wallpaper configuration for Plasma-based UIs"
|
|
install_if="postmarketos-artwork-wallpapers=$pkgver-r$pkgrel postmarketos-base-ui-plasma"
|
|
|
|
install -Dm755 "$srcdir"/set-plasma-wallpaper.sh \
|
|
-t "$subpkgdir"/usr/libexec/postmarketos
|
|
|
|
install -Dm644 "$srcdir"/set-plasma-wallpaper.desktop \
|
|
-t "$subpkgdir"/etc/skel/.config/autostart
|
|
}
|
|
|
|
icons() {
|
|
pkgdesc="Icons for postmarketOS"
|
|
|
|
install -Dm644 "$builddir"/logo/logo.svg \
|
|
"$subpkgdir"/usr/share/pixmaps/postmarketos-logo.svg
|
|
install -Dm644 "$builddir"/logo/logo-phone.svg \
|
|
"$subpkgdir"/usr/share/pixmaps/postmarketos-logo-phone.svg
|
|
}
|
|
|
|
sounds() {
|
|
pkgdesc="Sounds for postmarketOS"
|
|
|
|
mkdir -p "$subpkgdir"/usr/share/sounds/postmarketOS/
|
|
install -Dm644 "$builddir"/tones/battery_low.mid \
|
|
"$subpkgdir"/usr/share/sounds/postmarketOS/
|
|
install -Dm644 "$builddir"/tones/no_signal.mid \
|
|
"$subpkgdir"/usr/share/sounds/postmarketOS/
|
|
install -Dm644 "$builddir"/tones/startup.mid \
|
|
"$subpkgdir"/usr/share/sounds/postmarketOS/
|
|
}
|
|
|
|
sha512sums="
|
|
cef2326a28dbd597f3d679329aaac17031bf1fdc60f634bc25cf20b23e62028961c5f228570df824615b21616a18ab2fd290a770cfd4f3ca1d929ac552a34ea8 postmarketos-artwork-f28dd5fef287c970f50ca49bc44814ee1e3b229d.tar.gz
|
|
6464a9246d1c9cac5cd2f55345f1659e872377f941160132c897c8c08955bb61083fec6daa8993a34bffdcc900a29f7ae6438fe86a476242447ddccf4e937d06 10_pmOS-wallpaper.gschema.override
|
|
0bcdfb41adb02b657ee0f9938d134d551fa8c3ef166e8a7895908d1dd355119143088641196505b3e2018896ae39a5392032de114aa602f4911b3aeadddd7b60 postmarketos-gnome.xml
|
|
a2fe87907a0fc6eb2b18305c7f183ac57bae7223d9fdeb992c93947576480c6a2fdb073ea2746407e227531c84aaa0acd0c27abb7fb272bc58433b3a02c260f4 set-plasma-wallpaper.desktop
|
|
770bf87c4629327b4c7b35ee42587cdcd6100103640cce1894be66d1346b7220df919371935f3288e00f99b652f223ad578f1e93c5d43556e7c4ddd50f87f739 set-plasma-wallpaper.sh
|
|
"
|