wok view libraw/receipt @ rev 15482

Add some licenses
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Nov 10 17:13:06 2013 +0000 (2013-11-10)
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 }