summaryrefslogtreecommitdiff
path: root/community/devilspie/PKGBUILD
blob: 4de045369d3d34b9bf793a9416465de961ce620d (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
# $Id: PKGBUILD 114790 2014-07-04 06:00:28Z fyan $
# Maintainer: Aaron Griffin <aaron@archlinux.org>
# Contributor: Travis Willard <travisw@wmpub.ca> 
# Contributor: William Rea <sillywilly@gmail.com>

pkgname=devilspie
pkgver=0.22
pkgrel=6
pkgdesc="x11 window matching utility"
arch=('i686' 'x86_64')
url="http://www.burtonini.com/blog/computers/devilspie"
license=('GPL')
depends=('libwnck')
makedepends=('pkgconfig' 'intltool' 'gnome-common')
source=("http://www.burtonini.com/computing/$pkgname-$pkgver.tar.gz")
md5sums=('4190e12f99ab92c0427e457d9fbfe231')

build() {
  cd $srcdir/$pkgname-$pkgver
  sed -i -e '/-DG.*_DISABLE_DEPRECATED/d' src/Makefile.am
  export LIBS="-lX11"
  ./autogen.sh

  ./configure --prefix=/usr --sysconfdir=/etc
  make
}

package() {
  cd $srcdir/$pkgname-$pkgver
  make prefix=$pkgdir/usr install
  # Make and install blank config
  mkdir -p $pkgdir/etc/devilspie
  echo '(debug)' > $pkgdir/etc/devilspie/example.ds
}