41 lines
1.4 KiB
Bash
41 lines
1.4 KiB
Bash
|
# Maintainer: TROM <contact@tromsite.com>
|
||
|
pkgname=tromjaro-layout-switcher
|
||
|
pkgver=1.0.0
|
||
|
pkgrel=1
|
||
|
pkgdesc="TROMjaro Layout switcher application"
|
||
|
arch=(any)
|
||
|
url=""
|
||
|
license=(unknown)
|
||
|
depends=('yad'
|
||
|
'xfce4-panel-profiles'
|
||
|
'vala-panel-appmenu-registrar-git'
|
||
|
'vala-panel-appmenu-xfce'
|
||
|
'vala-panel-appmenu-common'
|
||
|
'libdbusmenu-gtk2'
|
||
|
'appmenu-gtk-module')
|
||
|
provides=('tromjaro-layout-switcher')
|
||
|
backup=()
|
||
|
options=(!strip)
|
||
|
source=("layout-switcher"
|
||
|
"layout-switcher.desktop"
|
||
|
"https://www.drive.tromsite.com/s/SWmAcokLcxLB3gM/download"
|
||
|
"https://www.drive.tromsite.com/s/6dHoNjar9wJzeLd/download")
|
||
|
sha256sums=('SKIP'
|
||
|
'SKIP'
|
||
|
'SKIP'
|
||
|
'SKIP')
|
||
|
package() {
|
||
|
# copy icons
|
||
|
install -d ${pkgdir}/usr/share/tromjaro-layout-switcher/icons
|
||
|
install -Dm644 ${srcdir}/icons/* ${pkgdir}/usr/share/tromjaro-layout-switcher/icons
|
||
|
|
||
|
# copy profiles
|
||
|
install -d ${pkgdir}/usr/share/tromjaro-layout-switcher/profiles
|
||
|
install -Dm644 ${srcdir}/profiles/* ${pkgdir}/usr/share/tromjaro-layout-switcher/profiles
|
||
|
|
||
|
|
||
|
# copy executables
|
||
|
install -Dm644 ${srcdir}/tromjaro-layout-switcher.desktop ${pkgdir}/usr/share/applications/tromjaro-layout-switcher.desktop
|
||
|
install -Dm755 ${srcdir}/theme-switcher ${pkgdir}/usr/bin/tromjaro-theme-switcher
|
||
|
}
|