blob: 27325a2e3234c953668477b4408b48581ff609ed (
plain)
1 # Description: Fake keyboard/mouse input
2 # URL: http://www.semicomplete.com/projects/xdotool
3 # Maintainer: Tim Biermann, tbier at posteo dot de
4 # Depends on: libxkbcommon xorg-libxinerama xorg-libxtst
5
6 name=xdotool
7 version=3.20160805.1
8 release=1
9 source=(https://github.com/jordansissel/$name/archive/v$version/$name-v$version.tar.gz)
10
11
12 build() {
13 cd $name-$version
14 make WITHOUT_RPATH_FIX=1
15 make DESTDIR=$PKG PREFIX=/usr DINSTALLMAN=$PKG/usr/share/man install
16 chmod -x $PKG/usr/include/xdo.h
17 }
|