# HG changeset patch # User Christophe Lincoln # Date 1306234398 -7200 # Node ID 4d01c1ff4f576a93c6167e76390bc519e8a32ca4 # Parent 8ad990dde0f8a0c535d6df0f2f081a34e7ca5f78 zlib: clean gain, no need of glibc in dep, it's a dep for ALL packages diff -r 8ad990dde0f8 -r 4d01c1ff4f57 zlib/receipt --- a/zlib/receipt Tue May 24 06:48:16 2011 +0000 +++ b/zlib/receipt Tue May 24 12:53:18 2011 +0200 @@ -9,17 +9,6 @@ WEB_SITE="http://zlib.net/" WGET_URL="$WEB_SITE/$TARBALL" -DEPENDS="glibc-base" -BUILD_DEPENDS="glibc" - -# Rules to compile & install the temporary toolchain. -cook_tmp_toolchain() -{ - cd $src - ./configure --prefix=/tools && - make && make install -} - # Rules to configure and make the package. compile_rules() { @@ -34,3 +23,11 @@ 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 +}