wok-next view xdotool/receipt @ rev 21722

efivar: typo in post_install
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Sep 01 10:31:46 2020 +0000 (2020-09-01)
parents d5aab818505e
children
line source
1 # SliTaz package receipt.
3 PACKAGE="xdotool"
4 VERSION="2.20110530.1"
5 CATEGORY="misc"
6 SHORT_DESC="Fake keyboard/mouse input, window management, and more"
7 MAINTAINER="devel@slitaz.org"
8 LICENSE="BSD"
9 WEB_SITE="https://www.semicomplete.com/projects/xdotool/"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="http://semicomplete.googlecode.com/files/$TARBALL" # FIXME
14 BUILD_DEPENDS="libx11-dev libxtst-dev xorg-dev perl"
16 compile_rules() {
17 make &&
18 make \
19 PREFIX=/usr \
20 INSTALLMAN=/usr/share/man \
21 DESTDIR=$install \
22 install
23 }
25 genpkg_rules() {
26 mkdir -p $fs/usr
27 cp -a $install/usr/bin $install/usr/lib $fs/usr
28 DEPENDS="libx11 libxtst"
29 }