wok annotate xorg-xeyes/receipt @ rev 22539

updated bird (2.0.3 -> 2.0.7)
author Hans-G?nter Theisgen
date Fri Jan 03 16:08:36 2020 +0100 (2020-01-03)
parents 682b8a3cc16a
children 5d79829fa876
rev   line source
pascal@11203 1 # SliTaz package receipt.
pascal@11203 2
pascal@11203 3 PACKAGE="xorg-xeyes"
Hans-G?nter@22258 4 VERSION="1.1.2"
pascal@11203 5 CATEGORY="x-window"
pascal@11203 6 SHORT_DESC="A follow the mouse X demo."
pascal@11203 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@15579 8 LICENSE="MIT"
Hans-G?nter@22258 9 WEB_SITE="https://www.x.org/wiki/"
Hans-G?nter@22258 10
pascal@11203 11 SOURCE="xeyes"
pascal@11203 12 TARBALL="$SOURCE-$VERSION.tar.bz2"
Hans-G?nter@22258 13 WGET_URL="$XORG_MIRROR/app/$TARBALL"
pascal@15579 14
Hans-G?nter@22258 15 DEPENDS="xorg-libX11 xorg-libXext xorg-libXmu xorg-libXrender xorg-libXt"
pascal@11203 16
pascal@11203 17 # Rules to configure and make the package.
pascal@11203 18 compile_rules()
pascal@11203 19 {
Hans-G?nter@22258 20 ./configure \
Hans-G?nter@22258 21 --prefix=/usr \
Hans-G?nter@22258 22 --mandir=/usr/share/man \
pascal@11203 23 $CONFIGURE_ARGS &&
pascal@11203 24 make &&
pascal@11203 25 make DESTDIR=$DESTDIR install
pascal@11203 26 }
pascal@11203 27
pascal@11203 28 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@11203 29 genpkg_rules()
pascal@11203 30 {
pascal@11203 31 mkdir -p $fs/usr
pascal@15579 32 cp -a $install/usr/bin $fs/usr
pascal@11203 33 chmod +x $fs/usr/bin/*
pascal@11203 34 }
Hans-G?nter@22274 35