wok view xorg-xeyes/receipt @ rev 12494

Up: dbus-python (1.0.0)
author Christophe Lincoln <pankso@slitaz.org>
date Tue Apr 24 15:23:41 2012 +0200 (2012-04-24)
parents bf4417b54ba9
children eb8067417980
line source
1 # SliTaz package receipt.
3 PACKAGE="xorg-xeyes"
4 VERSION="1.1.1"
5 CATEGORY="x-window"
6 SHORT_DESC="A follow the mouse X demo."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 SOURCE="xeyes"
9 TARBALL="$SOURCE-$VERSION.tar.bz2"
10 WEB_SITE="http://xorg.freedesktop.org/"
11 WGET_URL="$WEB_SITE/releases/individual/app/$TARBALL"
12 DEPENDS="xorg-libX11 xorg-libXt xorg-libXext xorg-libXmu xorg-libXrender"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 ./configure \
19 --prefix=/usr \
20 --mandir=/usr/share/man \
21 $CONFIGURE_ARGS &&
22 make &&
23 make DESTDIR=$DESTDIR install
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr
30 cp -a $_pkg/usr/bin $fs/usr
31 chmod +x $fs/usr/bin/*
32 }