Update PKGBUILD for the new code in Nim

This commit is contained in:
Rokosun 2023-12-25 08:01:59 +00:00
parent 779117672e
commit b1dc6d7e29
1 changed files with 55 additions and 24 deletions

View File

@ -3,22 +3,25 @@ pkgname=tromjaro-layout-switcher
pkgver=1.4 pkgver=1.4
pkgrel=1 pkgrel=1
pkgdesc="TROMjaro Layout switcher application" pkgdesc="TROMjaro Layout switcher application"
arch=(any) arch=('x86_64')
url="" url="https://git.trom.tf/TROMjaro/layout-switcher-package"
license=(unknown) license=(unknown)
depends=('yad' depends=('xfce4-panel-profiles'
'zensu' 'util-linux'
'xfce4-panel-profiles'
'vala-panel-appmenu-xfce-git' 'vala-panel-appmenu-xfce-git'
'vala-panel-appmenu-common-git' 'vala-panel-appmenu-common-git'
'libdbusmenu-gtk2' 'libdbusmenu-gtk2'
'appmenu-gtk-module') 'appmenu-gtk-module')
makedepends=('choosenim')
optdepends=('vala-panel-appmenu-registrar') optdepends=('vala-panel-appmenu-registrar')
provides=('tromjaro-layout-switcher') provides=('tromjaro-layout-switcher')
backup=() backup=()
options=(!strip) options=(!strip)
source=("layout-switcher" source=("layoutSwitcher.nim"
"toggleGlobalMenu.nim"
"sharedModule.nim"
"tromjaro-layout-switcher.desktop" "tromjaro-layout-switcher.desktop"
"com.tromjaro.LayoutSwitcher.policy"
"tromjaro-layout-switcher.svg" "tromjaro-layout-switcher.svg"
"icons.zip::https://www.drive.tromsite.com/s/SWmAcokLcxLB3gM/download" "icons.zip::https://www.drive.tromsite.com/s/SWmAcokLcxLB3gM/download"
"profiles.zip::https://www.drive.tromsite.com/s/6dHoNjar9wJzeLd/download") "profiles.zip::https://www.drive.tromsite.com/s/6dHoNjar9wJzeLd/download")
@ -26,23 +29,51 @@ sha256sums=('SKIP'
'SKIP' 'SKIP'
'SKIP' 'SKIP'
'SKIP' 'SKIP'
'SKIP'
'SKIP'
'SKIP'
'SKIP') 'SKIP')
package() { prepare() {
# copy icons # Disable telemetry in choosenim if user is running it for the first time
install -d ${pkgdir}/usr/share/tromjaro-layout-switcher/icons [ -f "$HOME"/.choosenim/analytics ] || {
install -Dm644 ${srcdir}/icons/* ${pkgdir}/usr/share/tromjaro-layout-switcher/icons mkdir -p "$HOME"/.choosenim
touch "$HOME"/.choosenim/analytics
# copy profiles }
install -d ${pkgdir}/usr/share/tromjaro-layout-switcher/profiles echo 'Install Nim if not already installed:'
install -Dm644 ${srcdir}/profiles/* ${pkgdir}/usr/share/tromjaro-layout-switcher/profiles choosenim stable
echo 'Update Nim to the latest stable release:'
choosenim update stable
# copy executables echo 'Refresh nimble package list:'
install -Dm644 ${srcdir}/tromjaro-layout-switcher.desktop ${pkgdir}/usr/share/applications/tromjaro-layout-switcher.desktop "$HOME"/.nimble/bin/nimble --nim:"$HOME"/.nimble/bin/nim refresh
install -Dm755 ${srcdir}/layout-switcher ${pkgdir}/usr/bin/tromjaro-layout-switcher echo 'Install owlkettle from the latest git commit:'
"$HOME"/.nimble/bin/nimble --nim:"$HOME"/.nimble/bin/nim install owlkettle@#head
# copy icon }
install -d ${pkgdir}/usr/share/icons/hicolor/scalable/apps build(){
install -Dm644 ${srcdir}/tromjaro-layout-switcher.svg ${pkgdir}/usr/share/icons/hicolor/scalable/apps echo 'Compile layoutSwitcher.nim for release build:'
"$HOME"/.nimble/bin/nim c -d:release --out:${srcdir}/layoutSwitcher ${srcdir}/layoutSwitcher.nim
echo 'Compile toggleGlobalMenu.nim for release build:'
"$HOME"/.nimble/bin/nim c -d:release --out:${srcdir}/toggleGlobalMenu ${srcdir}/toggleGlobalMenu.nim
}
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 -d ${pkgdir}/usr/share/applications
install -Dm644 ${srcdir}/tromjaro-layout-switcher.desktop ${pkgdir}/usr/share/applications
install -Dm755 ${srcdir}/layoutSwitcher ${pkgdir}/usr/bin/tromjaro-layout-switcher
install -Dm755 ${srcdir}/toggleGlobalMenu ${pkgdir}/usr/bin/toggle-global-menu
# copy polkit action
install -d ${pkgdir}/usr/share/polkit-1/actions
install -Dm644 com.tromjaro.LayoutSwitcher.policy ${pkgdir}/usr/share/polkit-1/actions
# copy desktop icon
install -d ${pkgdir}/usr/share/icons/hicolor/scalable/apps
install -Dm644 ${srcdir}/tromjaro-layout-switcher.svg ${pkgdir}/usr/share/icons/hicolor/scalable/apps
} }