Update PKGBUILD for the new code in Nim
Also improved a bunch of other things like the missing URL and architecture information.
This commit is contained in:
parent
da34f2087f
commit
45ebde24a2
28
PKGBUILD
28
PKGBUILD
|
@ -3,23 +3,38 @@ pkgname=tromjaro-theme-switcher
|
|||
pkgver=1.4
|
||||
pkgrel=3
|
||||
pkgdesc="TROMjaro Theme switcher application"
|
||||
arch=(any)
|
||||
url=""
|
||||
arch=('x86_64')
|
||||
url="https://git.trom.tf/TROMjaro/theme-switcher-package"
|
||||
license=(unknown)
|
||||
depends=('yad'
|
||||
depends=('tromjaro-fixes'
|
||||
'xfconf'
|
||||
'gtk4'
|
||||
'colloid-gtk-theme-git'
|
||||
'zafiro-icon-theme')
|
||||
makedepends=('choosenim')
|
||||
provides=('tromjaro-theme-switcher')
|
||||
backup=()
|
||||
options=(!strip)
|
||||
source=("theme-switcher"
|
||||
source=("themeSwitcher.nim"
|
||||
"tromjaro-theme-switcher.desktop"
|
||||
"tromjaro-theme-switcher.svg"
|
||||
"https://www.drive.tromsite.com/s/zFtCp3SkZ4NpKix/download")
|
||||
"icons.zip::https://www.drive.tromsite.com/s/zFtCp3SkZ4NpKix/download")
|
||||
sha256sums=('SKIP'
|
||||
'SKIP'
|
||||
'SKIP'
|
||||
'SKIP')
|
||||
prepare() {
|
||||
echo 'Install Nim if not already installed:'
|
||||
choosenim stable
|
||||
echo 'Update Nim to the latest stable release:'
|
||||
choosenim update stable
|
||||
echo 'Install owlkettle from the latest git commit:'
|
||||
"$HOME"/.nimble/bin/nimble install owlkettle@#head
|
||||
}
|
||||
build(){
|
||||
echo 'Compile themeSwitcher.nim for release build:'
|
||||
"$HOME"/.nimble/bin/nim c -d:release --out:${srcdir}/themeSwitcher ${srcdir}/themeSwitcher.nim
|
||||
}
|
||||
package() {
|
||||
# copy icons
|
||||
install -d ${pkgdir}/usr/share/tromjaro-theme-switcher/icons
|
||||
|
@ -27,10 +42,9 @@ package() {
|
|||
|
||||
# copy executables
|
||||
install -Dm644 ${srcdir}/tromjaro-theme-switcher.desktop ${pkgdir}/usr/share/applications/tromjaro-theme-switcher.desktop
|
||||
install -Dm755 ${srcdir}/theme-switcher ${pkgdir}/usr/bin/tromjaro-theme-switcher
|
||||
install -Dm755 ${srcdir}/themeSwitcher ${pkgdir}/usr/bin/tromjaro-theme-switcher
|
||||
|
||||
# copy the icon
|
||||
install -d ${pkgdir}/usr/share/icons/hicolor/scalable/apps
|
||||
install -Dm644 ${srcdir}/tromjaro-theme-switcher.svg ${pkgdir}/usr/share/icons/hicolor/scalable/apps
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user