summaryrefslogtreecommitdiff
path: root/community/xautomation/PKGBUILD
blob: 1fc7aff755ec19a86d0dfd635ea3f9e8f071a61d (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
# $Id: PKGBUILD 57187 2011-10-23 16:31:38Z lfleischer $
# Maintainer: Lukas Fleischer <archlinux at cryptocrack dot de>
# Contributor: raubkopierer <mail[dot]sensenmann[at]gmail[dot]com>

pkgname=xautomation
pkgver=1.05
pkgrel=1
pkgdesc='Controls X from the command line and does "visual scraping".'
url='http://hoopajoo.net/projects/xautomation.html'
arch=('i686' 'x86_64')
license=('GPL')
depends=('libpng' 'libxtst')
source=("http://hoopajoo.net/static/projects/${pkgname}-${pkgver}.tar.gz")
md5sums=('4526ea5085a680a3ae8629af1731e5fa')

build() {
  cd "${srcdir}/${pkgname}-${pkgver}"

  ./configure --prefix=/usr 
  make
}

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