wok view libraw/receipt @ rev 21148

pulseaudio: add some config_files
author Richard Dunbar <mojo@slitaz.org>
date Thu Mar 28 17:43:17 2019 -0400 (2019-03-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 }