summarylogtreecommitdiffstats
path: root/PKGBUILD
diff options
context:
space:
mode:
authormynacol2021-05-16 18:02:11 +0200
committermynacol2021-05-16 18:08:37 +0200
commitd401174a2ccebdf67d200706370b78098ead2a44 (patch)
tree342185fcaee56ed213022be1d5719e5af92de841 /PKGBUILD
parenteb06fe6e165ffa51f5cdc5318357d71c7f401a01 (diff)
downloadaur-d401174a2ccebdf67d200706370b78098ead2a44.tar.gz
Make script POSIX-compliant
This removes all bash-specific syntax, so any POSIX-compliant shell can be used. Also bumps the version to 0.2.
Diffstat (limited to 'PKGBUILD')
-rw-r--r--PKGBUILD10
1 files changed, 8 insertions, 2 deletions
diff --git a/PKGBUILD b/PKGBUILD
index 0aa21f03d11b..3daf033fc398 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,13 +1,19 @@
# Maintainer: mynacol <paul àt dismail _ de>
pkgname=theme-switcher-git
-pkgver=0.1.2
+pkgver=0.2
pkgrel=1
pkgdesc="Switching between light and dark themes made easy"
arch=('any')
url="https://aur.archlinux.org/packages/${pkgname}/"
license=('GPL')
-depends=('bash' 'glib2' 'sed' 'jq' 'moreutils')
+depends=('sh' # script interpreter
+ 'glib2' # provides gsettings
+ 'grep' # regex matching in conditionals
+ 'sed' # editing config files
+ 'jq' # editing JSON config files
+ 'moreutils' # provides sponge
+)
optdepends=(
'xfce4-settings: for GTK switching under Xorg'
'qt5ct: for Qt5 switching. Additional setup required.'