wok-current diff libxml2/receipt @ rev 18915
Add: GNU Unifont UTF-8. Tag: TrueType. GPL2 License.
author | Leonardo Laporte <hackdorte@sapo.pt> |
---|---|
date | Wed Feb 24 06:53:25 2016 -0300 (2016-02-24) |
parents | 0bd0738f4d00 |
children | 0253e30fe373 |
line diff
1.1 --- a/libxml2/receipt Sun Dec 08 18:53:33 2013 +0000 1.2 +++ b/libxml2/receipt Wed Feb 24 06:53:25 2016 -0300 1.3 @@ -16,8 +16,11 @@ 1.4 1.5 # When cross compiling Python is installed in chroot and is used 1.6 # by cross tools, cook dont need to install it in /usr/cross/arm 1.7 +# Building with LZMA support is buggy and build fails 1.8 case "$ARCH" in 1.9 - arm) BUILD_DEPENDS="" ;; 1.10 + arm) 1.11 + BUILD_DEPENDS="" 1.12 + ARCH_ARGS="--without-lzma" ;; 1.13 esac 1.14 1.15 # Rules to configure and make the package. 1.16 @@ -26,7 +29,6 @@ 1.17 # and binaries are splited into libxml2-tools 1.18 compile_rules() 1.19 { 1.20 - cd $src 1.21 autoreconf -fi 1.22 ./configure \ 1.23 --prefix=/usr \ 1.24 @@ -35,7 +37,7 @@ 1.25 --with-html-dir=/usr/share/doc \ 1.26 --with-threads \ 1.27 --with-history \ 1.28 - $CONFIGURE_ARGS && 1.29 + $CONFIGURE_ARGS $ARCH_ARGS && 1.30 make && 1.31 make DESTDIR=$DESTDIR install 2>&1 | grep -v "can't stat './..html':" 1.32 }