# HG changeset patch # User Christopher Rogers # Date 1306220272 0 # Node ID 686e6877305ba22a83b201ec8e4183e2028ed1a5 # Parent 4d01c1ff4f576a93c6167e76390bc519e8a32ca4 zlib: DONT BREAK TAZWOK COOKORDER. Depends and build depends are need for toolchain to be build right. diff -r 4d01c1ff4f57 -r 686e6877305b zlib/receipt --- a/zlib/receipt Tue May 24 12:53:18 2011 +0200 +++ b/zlib/receipt Tue May 24 06:57:52 2011 +0000 @@ -9,6 +9,17 @@ WEB_SITE="http://zlib.net/" WGET_URL="$WEB_SITE/$TARBALL" +DEPENDS="glibc-base" +BUILD_DEPENDS="gcc" + +# Rules to compile & install the temporary toolchain by Tazwok. +cook_tmp_toolchain() +{ + cd $src + ./configure --prefix=/tools && + make && make install +} + # Rules to configure and make the package. compile_rules() { @@ -24,10 +35,3 @@ cp -a $_pkg/usr/lib/libz.so* $fs/usr/lib } -# Rules to compile & install the temporary toolchain by Tazwok. -cook_tmp_toolchain() -{ - cd $src - ./configure --prefix=/tools && - make && make install -}