wok view xorg-xev/receipt @ rev 17713

Up libmatemixer-dev wrong dir
author Yuri Pourre <yuripourre@gmail.com>
date Wed Mar 04 00:19:44 2015 -0300 (2015-03-04)
parents c514cc4854d8
children c86e41198e76
line source
1 # SliTaz package receipt.
3 PACKAGE="xorg-xev"
4 VERSION="1.1.0"
5 CATEGORY="x-window"
6 SHORT_DESC="print contents of x-server events "
7 MAINTAINER="jozee@slitaz.org"
8 LICENSE="MIT"
9 SOURCE="xev"
10 TARBALL="$SOURCE-$VERSION.tar.bz2"
11 WEB_SITE="http://xorg.freedesktop.org/"
12 WGET_URL="$WEB_SITE/releases/individual/app/$TARBALL"
13 TAGS="utility xorg debug"
15 DEPENDS="xorg-libX11"
16 BUILD_DEPENDS="xorg-libX11-dev"
18 # Rules to configure and make the package.ls sr
19 compile_rules()
20 {
21 cd $src
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 }