wok view libraw/receipt @ rev 22816

brasero: add icons
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Feb 04 08:33:50 2020 +0100 (2020-02-04)
parents 6e8b1bcb30e2
children 9cb37f5af1e5
line source
1 # SliTaz package receipt.
3 PACKAGE="libraw"
4 VERSION="0.19.2"
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 }