wok diff jpeg/receipt @ rev 16328

mercurial: fix receipt (Thanks Alexandr) and ARM up slitaz-configs
author Christophe Lincoln <pankso@slitaz.org>
date Thu Apr 10 19:44:57 2014 +0200 (2014-04-10)
parents de49f29b101e
children 75c64a236392
line diff
     1.1 --- a/jpeg/receipt	Thu Dec 05 15:25:09 2013 +0000
     1.2 +++ b/jpeg/receipt	Thu Apr 10 19:44:57 2014 +0200
     1.3 @@ -10,15 +10,18 @@
     1.4  TARBALL="jpegsrc.v${VERSION}.tar.gz"
     1.5  WGET_URL="http://www.ijg.org/files/$TARBALL"
     1.6  TAGS="jpeg jpg"
     1.7 +HOST_ARCH="i486 arm"
     1.8  
     1.9  DEPENDS="libjpeg"
    1.10  
    1.11  # Rules to configure and make the package.
    1.12  compile_rules()
    1.13  {
    1.14 -    cd $src
    1.15 -    ./configure --enable-shared --prefix=/usr \
    1.16 -		--mandir=/usr/share/man $CONFIGURE_ARGS &&
    1.17 +    ./configure \
    1.18 +		--enable-shared \
    1.19 +		--prefix=/usr \
    1.20 +		--mandir=/usr/share/man \
    1.21 +		$CONFIGURE_ARGS &&
    1.22      make &&
    1.23  	make DESTDIR=$DESTDIR install
    1.24  }