summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 13fba768a8d4f2e96185699b579f0a194e5187c8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# Maintainer: Christian Schwarz <me@cschwarz.com>
pkgname=gmux_backlight
_commit="ebd45a90dd6be962f310dc4517147bced792c112"
pkgrel=1
pkgdesc="Modify brightness of displays attached to a gmux."
arch=("any")
url="https://github.com/problame/gmux_backlight"
license=('BSD')
depends=()
makedepends=('git' "asciidoc")
source=("git+https://github.com/problame/gmux_backlight#commit=${_commit}")
md5sums=('SKIP')
#generate with 'makepkg -g'

pkgver=0.1
pkgver() {
  cd "$srcdir/$pkgname"
  git describe
}

build() {
  
  cd "$srcdir/$pkgname"
  make build
  make docs

}

package() {
  cd "$srcdir/$pkgname"
  make DESTDIR="$pkgdir/" install  
}

# vim:set ts=2 sw=2 et: