wok annotate xorg-xrandr/receipt @ rev 7967

Fix: libwebkit needs -j1 to compile well
author Antoine Bodin <gokhlayeh@slitaz.org>
date Mon Jan 17 17:39:27 2011 +0100 (2011-01-17)
parents 07ae722ec64e
children c514cc4854d8
rev   line source
pankso@3019 1 # SliTaz package receipt.
pankso@3019 2
pankso@3019 3 PACKAGE="xorg-xrandr"
slaxemulator@7252 4 VERSION="1.3.4"
pankso@3019 5 CATEGORY="x-window"
pankso@3019 6 SHORT_DESC="X app to show system resources usage."
pankso@3019 7 MAINTAINER="pankso@slitaz.org"
pankso@3019 8 DEPENDS="xorg"
pankso@3019 9 SOURCE="xrandr"
gokhlayeh@6993 10 TARBALL="$SOURCE-$VERSION.tar.bz2"
pankso@3019 11 WEB_SITE="http://www.x.org/"
pankso@3019 12 WGET_URL="$XORG_MIRROR/app/$TARBALL"
pankso@3019 13
pankso@3019 14 # Rules to configure and make the package.
pankso@3019 15 compile_rules()
pankso@3019 16 {
pankso@3019 17 cd $src
pankso@3019 18 ./configure --prefix=/usr --mandir=/usr/share/man \
pankso@3019 19 $CONFIGURE_ARGS &&
pankso@3019 20 make &&
pankso@3019 21 make DESTDIR=$PWD/_pkg install
pankso@3019 22 }
pankso@3019 23
pankso@3019 24 # Rules to gen a SliTaz package suitable for Tazpkg.
pankso@3019 25 genpkg_rules()
pankso@3019 26 {
pankso@3019 27 mkdir -p $fs/usr
pankso@3019 28 cp -a $_pkg/usr/bin $fs/usr
pankso@3019 29 }