Skip to content

Commit 83f347d

Browse files
Christian StormChristian Storm
Christian Storm
authored and
Christian Storm
committed
ArchLinux PKGBUILD
1 parent e12e288 commit 83f347d

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

PKGBUILD

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
pkgname=brightnessd-git
2+
pkgver=0.1
3+
pkgrel=1
4+
pkgdesc="regulate screen brightness depending on user input (in)activity"
5+
arch=('i686' 'x86_64')
6+
url="https://github.com/stormc/brightnessd"
7+
license=('MIT')
8+
depends=('libxcb')
9+
makedepends=('git')
10+
source=("$pkgname"::'git+https://github.com/stormc/brightnessd.git')
11+
md5sums=('SKIP')
12+
13+
build() {
14+
cd "$srcdir/$pkgname"
15+
make
16+
}
17+
18+
package() {
19+
cd "$srcdir/$pkgname"
20+
make PREFIX=/usr DESTDIR="$pkgdir" install
21+
}

0 commit comments

Comments
 (0)