wok annotate qt-x11-opensource-src/receipt @ rev 1514

Update some BUILD_DEPENDS
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Oct 06 19:20:18 2008 +0000 (2008-10-06)
parents 3d99ecce2d4b
children d86a706d7fcd
rev   line source
allan316@1358 1 # SliTaz package receipt.
allan316@1358 2
allan316@1358 3 PACKAGE="qt-x11-opensource-src"
allan316@1358 4 VERSION="4.4.1"
allan316@1358 5 CATEGORY="development"
allan316@1358 6 SHORT_DESC="qt x11 toolkit"
allan316@1358 7 MAINTAINER="allan316@gmail.com"
allan316@1358 8 DEPENDS="slitaz-dev-pkgs"
pascal@1514 9 BUILD_DEPENDS="xorg-libX11-dev"
allan316@1358 10 TARBALL="$PACKAGE-$VERSION.tar.gz"
allan316@1358 11 WEB_SITE="http://www.trolltech.com"
allan316@1358 12 WGET_URL="ftp://ftp.tu-chemnitz.de/pub/Qt/qt/source/$TARBALL"
allan316@1358 13
allan316@1358 14 # Rules to configure and make the package.
allan316@1358 15 compile_rules()
allan316@1358 16 {
allan316@1358 17 cd $src
allan316@1358 18 mkdir -p _pkg/usr/
pascal@1511 19 yes yes | ./configure --prefix=$PWD/_pkg/usr &&
pascal@1511 20 make &&
allan316@1358 21 make install
allan316@1358 22 }
allan316@1358 23
pascal@1511 24 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@1511 25 genpkg_rules()
pascal@1511 26 {
pascal@1511 27 # dummy tree to avoid 'tazwok cmp --cook' building loop
pascal@1511 28 mkdir $fs/etc
pascal@1511 29 }
allan316@1358 30