summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 81cab45a0b2342e8cbbb77d8ec4964dbc113bed3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# Maintainer: mynacol <paul àt dismail _ de>

pkgname=theme-switcher-git
pkgver=0.4.4
pkgrel=1
pkgdesc="Switching between light and dark themes made easy"
arch=('any')
url="https://aur.archlinux.org/packages/${pkgname}/"
license=('GPL')
depends=('sh'  # script interpreter
	'glib2'  # provides gsettings
	'grep'  # regex matching in conditionals
)
makedepends=('coreutils')
provides=("${pkgname%-git}")
conflicts=("${pkgname%-git}")
source=('dark-theme.sh')
sha256sums=('f11527a1bfe661f6a19299e6f7d9eb4168db3faed98941962b6164543bf3d77d')

package() {
	cd "$srcdir"
	install -Dm755 dark-theme.sh "$pkgdir/usr/bin/${pkgname%-git}"
}