wok view libraw/receipt @ rev 23902

Add SECRET_FILES variable
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Aug 01 16:19:51 2020 +0000 (2020-08-01)
parents 1dc9b08bfcea
children ede1d184d5c5
line source
1 # SliTaz package receipt.
3 PACKAGE="libraw"
4 VERSION="0.19.5"
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/"
11 SOURCE="LibRaw"
12 TARBALL="$SOURCE-$VERSION.tar.gz"
13 WGET_URL="https://www.libraw.org/data/$TARBALL"
15 DEPENDS="lcms"
16 BUILD_DEPENDS="lcms-dev"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 ./configure $CONFIGURE_ARGS &&
22 make -j 1 &&
23 make install
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr/lib
31 cp -a $install/usr/bin $fs/usr
32 cp -a $install/usr/lib/*.so* $fs/usr/lib
33 }