# HG changeset patch # User Antoine Bodin # Date 1296084049 -3600 # Node ID 8bfd4fcfb42af18337e7dc0b0093e99a5a754d94 # Parent a0d1333e073b6d38d5ccd122ff7b6270df5987af imported patch toolchain/bzip2.patch diff -r a0d1333e073b -r 8bfd4fcfb42a bzip2/receipt --- a/bzip2/receipt Thu Jan 27 00:20:49 2011 +0100 +++ b/bzip2/receipt Thu Jan 27 00:20:49 2011 +0100 @@ -9,14 +9,22 @@ WEB_SITE="http://www.bzip.org/" WGET_URL="http://www.bzip.org/$VERSION/$TARBALL" DEPENDS="bzlib" +BUILD_DEPENDS="gcc" TAGS="compression archive" +# Rules to compile & install the temporary toolchain. +cook_tmp_toolchain() +{ + cd $src + make && make PREFIX=/tools install +} + # Rules to configure and make the package. compile_rules() { cd $src - make -f Makefile-libbz2_so - make clean + make -f Makefile-libbz2_so && + make clean && make }