37 lines
1.2 KiB
Bash
Raw Normal View History

2022-09-14 17:17:28 +02:00
# Maintainer: TROM <contact@tromsite.com>
pkgname=tromjaro-theme-switcher
2022-10-21 01:28:24 +02:00
pkgver=1.2.0
2022-09-14 16:28:51 +02:00
pkgrel=1
2022-09-14 17:17:28 +02:00
pkgdesc="TROMjaro Theme switcher application"
2022-09-14 16:28:51 +02:00
arch=(any)
url=""
license=(unknown)
2022-09-07 05:27:45 +02:00
depends=('yad'
'zafiro-icon-theme'
2022-09-14 16:28:51 +02:00
'skeuos-gtk')
2022-09-14 17:17:28 +02:00
provides=('tromjaro-theme-switcher')
2022-09-14 16:28:51 +02:00
backup=()
options=(!strip)
source=("theme-switcher"
2022-09-20 03:51:27 +02:00
"tromjaro-theme-switcher.desktop"
2022-09-20 03:46:46 +02:00
"tromjaro-theme-switcher.svg"
2022-09-15 00:53:27 +02:00
"https://www.drive.tromsite.com/s/zFtCp3SkZ4NpKix/download")
2022-09-07 05:27:45 +02:00
sha256sums=('SKIP'
'SKIP'
2022-09-20 03:46:46 +02:00
'SKIP'
2022-09-07 05:27:45 +02:00
'SKIP')
2022-09-14 16:28:51 +02:00
package() {
# copy icons
2022-09-14 17:17:28 +02:00
install -d ${pkgdir}/usr/share/tromjaro-theme-switcher/icons
install -Dm644 ${srcdir}/icons/* ${pkgdir}/usr/share/tromjaro-theme-switcher/icons
2022-09-14 16:28:51 +02:00
# copy executables
2022-09-20 03:54:07 +02:00
install -Dm644 ${srcdir}/tromjaro-theme-switcher.desktop ${pkgdir}/usr/share/applications/tromjaro-theme-switcher.desktop
2022-09-14 17:17:28 +02:00
install -Dm755 ${srcdir}/theme-switcher ${pkgdir}/usr/bin/tromjaro-theme-switcher
2022-09-20 03:45:50 +02:00
# copy the icon
install -d ${pkgdir}/usr/share/icons/hicolor/scalable/apps
2022-09-20 03:54:07 +02:00
install -Dm644 ${srcdir}/tromjaro-theme-switcher.svg ${pkgdir}/usr/share/icons/hicolor/scalable/apps
2022-09-20 03:45:50 +02:00
2022-09-14 16:28:51 +02:00
}