Add rasterized icons in Arch Linux package (#383)

* add rasterized icons in arch linux package

* fix missing deps in chroot-ed build
This commit is contained in:
Cyano Hao 2024-04-13 17:45:55 +08:00 committed by GitHub
parent e3145d680f
commit ab30ede5c5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 10 additions and 1 deletions

View File

@ -7,7 +7,7 @@ arch=('i686' 'pentium4' 'x86_64' 'arm' 'armv6h' 'armv7h' 'aarch64' 'riscv64')
url="https://github.com/royqh1979/$_pkgname"
license=('GPL3')
depends=(qt5-base qt5-svg gcc gdb)
makedepends=(qt5-tools)
makedepends=(qt5-tools imagemagick librsvg)
optdepends=(
'clang: C/C++ compiler (alternative)'
)
@ -42,4 +42,13 @@ package() {
cd redpanda-build
make INSTALL_ROOT="$pkgdir" install
for size in 16 22 24 32 36 48 64 72 96 128 192 256 512; do
mkdir -p "$pkgdir/usr/share/icons/hicolor/${size}x${size}/apps"
magick convert \
-background none \
"$pkgdir/usr/share/icons/hicolor/scalable/apps/redpandaide.svg" \
-resize ${size}x${size} \
"$pkgdir/usr/share/icons/hicolor/${size}x${size}/apps/redpandaide.png"
done
}