theme-switcher-package/PKGBUILD

30 lines
906 B
Bash
Raw Normal View History

2022-09-14 15:17:28 +00:00
# Maintainer: TROM <contact@tromsite.com>
pkgname=tromjaro-theme-switcher
2022-09-14 14:28:51 +00:00
pkgver=1.0.0
pkgrel=1
2022-09-14 15:17:28 +00:00
pkgdesc="TROMjaro Theme switcher application"
2022-09-14 14:28:51 +00:00
arch=(any)
url=""
license=(unknown)
2022-09-07 03:27:45 +00:00
depends=('yad'
'zafiro-icon-theme'
2022-09-14 14:28:51 +00:00
'skeuos-gtk')
2022-09-14 15:17:28 +00:00
provides=('tromjaro-theme-switcher')
2022-09-14 14:28:51 +00:00
backup=()
options=(!strip)
source=("theme-switcher"
2022-09-07 03:27:45 +00:00
"theme-switcher.desktop"
2022-09-14 14:28:51 +00:00
"theme-switcher-icons.tar.gz")
2022-09-07 03:27:45 +00:00
sha256sums=('SKIP'
'SKIP'
'SKIP')
2022-09-14 14:28:51 +00:00
package() {
# copy icons
2022-09-14 15:17:28 +00:00
install -d ${pkgdir}/usr/share/tromjaro-theme-switcher/icons
install -Dm644 ${srcdir}/icons/* ${pkgdir}/usr/share/tromjaro-theme-switcher/icons
2022-09-14 14:28:51 +00:00
# copy executables
2022-09-14 15:17:28 +00:00
install -Dm644 ${srcdir}/theme-switcher.desktop ${pkgdir}/usr/share/applications/tromjaro-theme-switcher.desktop
install -Dm755 ${srcdir}/theme-switcher ${pkgdir}/usr/bin/tromjaro-theme-switcher
2022-09-14 14:28:51 +00:00
}