summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: db066794ac24d1a9b3e1212e95ca5fbb101cfe18 (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: Ivan Kolesnikov <kiv.apple@gmail.com>
pkgname=gnome-shell-extension-backlight-control
pkgver=1.0
pkgrel=1
pkgdesc='A GNOME shell extension for set different backlight levels and idle timeout for AC and battery'
arch=(any)
url="https://github.com/KivApple/gnome-shell-extension-backlight-control"
license=('GPL2')
depends=('gnome-shell>=3.24')
makedepends=('git')
source=("git+${url}.git")
sha256sums=('SKIP')

build() {
	cd gnome-shell-extension-backlight-control
	make
}

package() {
	cd gnome-shell-extension-backlight-control
	make INSTALL_PATH="$pkgdir/usr/share/gnome-shell/extensions" install
}