summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: b9a30c5fb12e32686f3d3817a63a0c87f16804af (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
35
36
# Maintainer: Brian Bidulock <bidulock@openss7.org>
pkgname=xde-styles
pkgver=1.1.77
pkgrel=1
pkgdesc="Four consistent styles across light-weight WMs for XDE"
groups=('xde')
arch=('any')
license=('CCPL:by-sa')
url="http://github.com/bbidulock/xde-styles"
depends=('m4')
makedepends=('git')
source=("$pkgname::git://github.com/bbidulock/$pkgname.git")
md5sums=('SKIP')

pkgver() {
  cd $pkgname
  git describe --always | sed 's|-|.|g;s|[.]g[a-f0-9]*$||'
}

prepare() {
  cd $pkgname
  ./autogen.sh
}

build() {
 cd $pkgname
 ./configure --prefix=/usr --sysconfdir=/etc
 make V=0
}

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

# vim: et sw=2: