wok view libraw/receipt @ rev 20917

updated fdupes (1.40 -> 1.6.1)
author Hans-G?nter Theisgen
date Thu Feb 28 17:10:02 2019 +0100 (2019-02-28)
parents 8d6f480bf664
children 1dc9b08bfcea
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="https://www.libraw.org/"
10 SOURCE="LibRaw"
11 TARBALL="$SOURCE-$VERSION.tar.gz"
12 WGET_URL="https://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 }