wok diff libraw/receipt @ rev 13847

frogatto: try to fix build (Boost 1.47 removed a deprecated function...) btw, we use boost 1.50
author Aleksej Bobylev <al.bobylev@gmail.com>
date Wed Jan 09 01:13:47 2013 +0000 (2013-01-09)
parents
children 2941e69a878e
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/libraw/receipt	Wed Jan 09 01:13:47 2013 +0000
     1.3 @@ -0,0 +1,29 @@
     1.4 +# SliTaz package receipt.
     1.5 +
     1.6 +PACKAGE="libraw"
     1.7 +VERSION="0.14.3"
     1.8 +CATEGORY="multimedia"
     1.9 +SHORT_DESC="A library for reading RAW files obtained from digital photo cameras (CRW/CR2, NEF, RAF, DNG, and others)"
    1.10 +MAINTAINER="slaxemulator@gmail.com"
    1.11 +WEB_SITE="http://www.libraw.org/"
    1.12 +SOURCE="LibRaw"
    1.13 +TARBALL="$SOURCE-$VERSION.tar.gz"
    1.14 +WGET_URL="http://www.libraw.org/data/$TARBALL"
    1.15 +
    1.16 +DEPENDS="lcms"
    1.17 +BUILD_DEPENDS="lcms-dev"
    1.18 +
    1.19 +# Rules to configure and make the package.
    1.20 +compile_rules()
    1.21 +{
    1.22 +	cd $src
    1.23 +	./configure $CONFIGURE_ARGS && make && make install
    1.24 +}
    1.25 +
    1.26 +# Rules to gen a SliTaz package suitable for Tazpkg.
    1.27 +genpkg_rules()
    1.28 +{
    1.29 +	mkdir -p $fs/usr/lib
    1.30 +	cp -a $install/usr/bin $fs/usr
    1.31 +	cp -a $install/usr/lib/*.so* $fs/usr/lib
    1.32 +}