wok view xorg-xev/receipt @ rev 22256

updated xorg-xev (1.1.0 -> 1.2.3)
author Hans-G?nter Theisgen
date Tue Nov 12 17:19:34 2019 +0100 (2019-11-12)
parents c86e41198e76
children 5d79829fa876
line source
1 # SliTaz package receipt.
3 PACKAGE="xorg-xev"
4 VERSION="1.2.3"
5 CATEGORY="x-window"
6 TAGS="utility xorg debug"
7 SHORT_DESC="Print contents of x-server events."
8 MAINTAINER="jozee@slitaz.org"
9 LICENSE="MIT"
10 WEB_SITE="https://www.x.org/wiki/"
12 SOURCE="xev"
13 TARBALL="$SOURCE-$VERSION.tar.bz2"
14 WGET_URL="$XORG_MIRROR/app/$TARBALL"
16 DEPENDS="xorg-libX11"
17 BUILD_DEPENDS="xorg-libX11-dev"
19 # Rules to configure and make the package.ls sr
20 compile_rules()
21 {
22 ./configure \
23 --prefix=/usr \
24 --mandir=/usr/share/man \
25 $CONFIGURE_ARGS &&
26 make &&
27 make DESTDIR=$DESTDIR install
28 }
30 # Rules to gen a SliTaz package suitable for Tazpkg.
31 genpkg_rules()
32 {
33 mkdir -p $fs/usr
34 cp -a $install/usr/bin $fs/usr
35 }