X-Original-To: alpine-devel@lists.alpinelinux.org Delivered-To: alpine-devel@mail.alpinelinux.org Received: from apollo.thewebhostserver.com (apollomail.thewebhostserver.com [46.23.65.248]) (using TLSv1 with cipher ECDHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.alpinelinux.org (Postfix) with ESMTPS id 0B5CDDC0168 for ; Tue, 10 Jun 2014 09:25:14 +0000 (UTC) Received: from [81.4.121.188] (port=54870 helo=localhost.localdomain) by apollo.thewebhostserver.com with esmtpsa (UNKNOWN:AES128-SHA256:128) (Exim 4.82) (envelope-from ) id 1WuIIq-002p2x-1X; Tue, 10 Jun 2014 10:25:12 +0100 From: Stuart Cardall To: alpine-devel@lists.alpinelinux.org Cc: Stuart Cardall Subject: [alpine-devel] [PATCH] testing/xdotool: new aport Date: Tue, 10 Jun 2014 09:24:55 +0000 Message-Id: <1402392295-30480-1-git-send-email-developer@it-offshore.co.uk> X-Mailer: git-send-email 1.9.1 X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - apollo.thewebhostserver.com X-AntiAbuse: Original Domain - lists.alpinelinux.org X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12] X-AntiAbuse: Sender Address Domain - it-offshore.co.uk X-Get-Message-Sender-Via: apollo.thewebhostserver.com: authenticated_id: developer@it-offshore.co.uk X-Source: X-Source-Args: X-Source-Dir: X-Mailinglist: alpine-devel Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: xdotool lets you simulate keyboard input and mouse activity, move and resize windows, etc. It does this using X11's XTEST extension and other Xlib functions. http://www.semicomplete.com/projects/xdotool/#idp9392 Builds on uclibc & musl --- testing/xdotool/APKBUILD | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 testing/xdotool/APKBUILD diff --git a/testing/xdotool/APKBUILD b/testing/xdotool/APKBUILD new file mode 100644 index 0000000..cefa4c2 --- /dev/null +++ b/testing/xdotool/APKBUILD @@ -0,0 +1,39 @@ +# Contributor: Stuart Cardall +# Maintainer: +pkgname=xdotool +pkgver=2.20110530.1 +pkgrel=0 +pkgdesc="This tool lets you simulate keyboard input and mouse activity, move and resize windows, etc." +url="http://www.semicomplete.com/projects/xdotool/#idp9392" +arch="all" +license="(c) Jordan Sissel" +depends="" +depends_dev="libx11-dev libxtst-dev libxinerama-dev" +makedepends="$depends_dev" +source="http://semicomplete.googlecode.com/files/$pkgname-$pkgver.tar.gz" + +_builddir="$srcdir"/$pkgname-$pkgver +prepare() { + local i + cd "$_builddir" + for i in $source; do + case $i in + *.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;; + esac + done +} + +build() { + cd "$_builddir" + export "PREFIX=/usr" + make +} + +package() { + cd "$_builddir" + make DESTDIR=$pkgdir install || return 1 +} + +md5sums="62d0c2158bbaf882a1cf580421437b2f xdotool-2.20110530.1.tar.gz" +sha256sums="e7b42c8b1d391970e1c1009b256033f30e57d8e0a2a3de229fd61ecfc27baf67 xdotool-2.20110530.1.tar.gz" +sha512sums="0b2f71203c41e320aac152e1376b30bb9f5ea2067572299ad4c32f49b2505566275f0b377b4f443c3520751d71a9b270325cd676e63ee2a153de3213e128f2cb xdotool-2.20110530.1.tar.gz" -- 1.9.1 --- Unsubscribe: alpine-devel+unsubscribe@lists.alpinelinux.org Help: alpine-devel+help@lists.alpinelinux.org ---