diff options
author | root <root@rshg054.dnsready.net> | 2011-10-22 23:14:45 +0000 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2011-10-22 23:14:45 +0000 |
commit | 789905b5e6b809a564832ba85b842988405e7375 (patch) | |
tree | 8860d5a0050d0c61684cba3cee03490ad01316c1 /community/xautomation | |
parent | d3d0811e23787b5c66edf94b3351a1555eb5010f (diff) |
Sat Oct 22 23:14:45 UTC 2011
Diffstat (limited to 'community/xautomation')
-rw-r--r-- | community/xautomation/PKGBUILD | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/community/xautomation/PKGBUILD b/community/xautomation/PKGBUILD new file mode 100644 index 000000000..4801fdf7a --- /dev/null +++ b/community/xautomation/PKGBUILD @@ -0,0 +1,26 @@ +# $Id: PKGBUILD 57104 2011-10-21 12:54:21Z lfleischer $ +# Maintainer: Lukas Fleischer <archlinux at cryptocrack dot de> +# Contributor: raubkopierer <mail[dot]sensenmann[at]gmail[dot]com> + +pkgname=xautomation +pkgver=1.03 +pkgrel=2 +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=('91030079b0ecf96195dd21bcec635cb6') + +build() { + cd "${srcdir}/${pkgname}-${pkgver}" + + ./configure --prefix=/usr + make +} + +package() { + cd "${srcdir}/${pkgname}-${pkgver}" + make DESTDIR="${pkgdir}" install +} |