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

fixed pkgconfig add in libQtCore
author Allan Pinto <allan316@gmail.com>
date Wed Apr 29 10:24:15 2009 +0000 (2009-04-29)
parents d86a706d7fcd
children 5b174a1f58f8
rev   line source
allan316@1358 1 # SliTaz package receipt.
allan316@1358 2
allan316@1358 3 PACKAGE="qt-x11-opensource-src"
allan316@2804 4 VERSION="4.5.0"
allan316@1358 5 CATEGORY="development"
allan316@1358 6 SHORT_DESC="qt x11 toolkit"
allan316@1358 7 MAINTAINER="allan316@gmail.com"
allan316@2804 8 DEPENDS="glibc-locale"
allan316@2804 9 BUILD_DEPENDS="xorg-libX11-dev dbus-dev slitaz-dev-pkgs"
allan316@1358 10 TARBALL="$PACKAGE-$VERSION.tar.gz"
allan316@1358 11 WEB_SITE="http://www.trolltech.com"
allan316@2804 12 WGET_URL="ftp://get.qtsoftware.com/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@2804 18 yes yes | ./configure --prefix=/usr &&
pascal@1511 19 make &&
allan316@2804 20 make INSTALL_ROOT=$PWD/_pkg install
allan316@1358 21 }
allan316@1358 22
pascal@1511 23 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@1511 24 genpkg_rules()
pascal@1511 25 {
pascal@1511 26 # dummy tree to avoid 'tazwok cmp --cook' building loop
pascal@1511 27 mkdir $fs/etc
pascal@1511 28 }
allan316@1358 29