wok diff libraw/receipt @ rev 22816

brasero: add icons
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Feb 04 08:33:50 2020 +0100 (2020-02-04)
parents 6e8b1bcb30e2
children 9cb37f5af1e5
line diff
     1.1 --- a/libraw/receipt	Thu Jan 24 11:33:03 2019 +0100
     1.2 +++ b/libraw/receipt	Tue Feb 04 08:33:50 2020 +0100
     1.3 @@ -1,12 +1,13 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="libraw"
     1.7 -VERSION="0.14.7"
     1.8 +VERSION="0.19.2"
     1.9  CATEGORY="multimedia"
    1.10 -SHORT_DESC="A library for reading RAW files obtained from digital photo cameras (CRW/CR2, NEF, RAF, DNG, and others)"
    1.11 +SHORT_DESC="A library for reading RAW files obtained from digital photo cameras (CRW/CR2, NEF, RAF, DNG, and others)."
    1.12  MAINTAINER="slaxemulator@gmail.com"
    1.13  LICENSE="LGPL2.1"
    1.14  WEB_SITE="https://www.libraw.org/"
    1.15 +
    1.16  SOURCE="LibRaw"
    1.17  TARBALL="$SOURCE-$VERSION.tar.gz"
    1.18  WGET_URL="https://www.libraw.org/data/$TARBALL"
    1.19 @@ -17,14 +18,16 @@
    1.20  # Rules to configure and make the package.
    1.21  compile_rules()
    1.22  {
    1.23 -	cd $src
    1.24 -	./configure $CONFIGURE_ARGS && make && make install
    1.25 +	./configure $CONFIGURE_ARGS &&
    1.26 +	make -j 1 &&
    1.27 +	make install
    1.28  }
    1.29  
    1.30  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.31  genpkg_rules()
    1.32  {
    1.33  	mkdir -p $fs/usr/lib
    1.34 -	cp -a $install/usr/bin $fs/usr
    1.35 -	cp -a $install/usr/lib/*.so* $fs/usr/lib
    1.36 +
    1.37 +	cp -a $install/usr/bin		$fs/usr
    1.38 +	cp -a $install/usr/lib/*.so*	$fs/usr/lib
    1.39  }