summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 62ae31d6323e8c66427b83ac382ab39c89f3b90f (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
# Maintainer: Brian Bidulock <bidulock@openss7.org>
pkgname=xde-theme
pkgver=1.1.100
pkgrel=1
pkgdesc="Theme and style setting utilities for the X Desktop Environment (XDE)"
groups=('xde')
arch=('i686' 'x86_64')
license=('GPL3')
url="http://github.com/bbidulock/xde-theme"
depends=('libxinerama' 'gdk-pixbuf2' 'libxrandr')
optdepends=('xde-styles: for styles that work with xde-style')
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: