wok view libraw/receipt @ rev 16374

Up: slitaz-configs (5.4) Getting ready for 5.0-RC1
author Christophe Lincoln <pankso@slitaz.org>
date Mon Apr 14 19:59:46 2014 +0200 (2014-04-14)
parents 2941e69a878e
children 6e8b1bcb30e2
line source
1 # SliTaz package receipt.
3 PACKAGE="libraw"
4 VERSION="0.14.7"
5 CATEGORY="multimedia"
6 SHORT_DESC="A library for reading RAW files obtained from digital photo cameras (CRW/CR2, NEF, RAF, DNG, and others)"
7 MAINTAINER="slaxemulator@gmail.com"
8 LICENSE="LGPL2.1"
9 WEB_SITE="http://www.libraw.org/"
10 SOURCE="LibRaw"
11 TARBALL="$SOURCE-$VERSION.tar.gz"
12 WGET_URL="http://www.libraw.org/data/$TARBALL"
14 DEPENDS="lcms"
15 BUILD_DEPENDS="lcms-dev"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 cd $src
21 ./configure $CONFIGURE_ARGS && make && make install
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr/lib
28 cp -a $install/usr/bin $fs/usr
29 cp -a $install/usr/lib/*.so* $fs/usr/lib
30 }