# HG changeset patch # User Pascal Bellard # Date 1311320023 -7200 # Node ID 3afb2964e012555f736669e0dd6432d5412e4f36 # Parent 8932387fe194e1ad52e77e901e14a029bec2c3fa Add xorg-xeyes diff -r 8932387fe194 -r 3afb2964e012 xorg-xeyes/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/xorg-xeyes/receipt Fri Jul 22 09:33:43 2011 +0200 @@ -0,0 +1,32 @@ +# SliTaz package receipt. + +PACKAGE="xorg-xeyes" +VERSION="1.1.1" +CATEGORY="x-window" +SHORT_DESC="A follow the mouse X demo." +MAINTAINER="pascal.bellard@slitaz.org" +SOURCE="xeyes" +TARBALL="$SOURCE-$VERSION.tar.bz2" +WEB_SITE="http://xorg.freedesktop.org/" +WGET_URL="$WEB_SITE/releases/individual/app/$TARBALL" + +# Rules to configure and make the package. +compile_rules() +{ + cd $src + ./configure \ + --prefix=/usr \ + --mandir=/usr/share/man \ + $CONFIGURE_ARGS && + make && + make DESTDIR=$DESTDIR install +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr + cp -a $_pkg/usr/bin $fs/usr + chmod +x $fs/usr/bin/* +} +