# HG changeset patch # User Christopher Rogers # Date 1306222307 0 # Node ID 63d859d2a16211938d828165c6c6b0e0d8a32e81 # Parent d1ad1340c827406b43c77f8b2ce9aae1c4b87646 zlib: DON'T SCREW UP TAZwOK COOKORDER. THIS IS NEEDED FOR COOK-TOOLCHAIN TO WORK. diff -r d1ad1340c827 -r 63d859d2a162 zlib/receipt --- a/zlib/receipt Tue May 24 13:08:16 2011 +0200 +++ b/zlib/receipt Tue May 24 07:31:47 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() { @@ -23,11 +34,3 @@ mkdir -p $fs/usr/lib 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 -}