summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 31913717d3adadde1a363802de1b02b3a02bf5fe (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
37
38
39
40
# Maintainer: Brian Bidulock <bidulock@openss7.org>
pkgname=xde-styles
pkgver=1.2.7
pkgrel=2
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' 'perl-timedate')
optdepends=('xdg-launch: for key bindings'
            'xde-menu: for root menus'
            'xde-ctools: for window menus'
            'xde-session: for key bindings')
source=("$pkgname::git://github.com/bbidulock/$pkgname.git")
md5sums=('SKIP')

pkgver() {
  cd $pkgname
  git describe --tags | 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: