# SliTaz package receipt. PACKAGE="libraw" VERSION="0.19.5" CATEGORY="multimedia" SHORT_DESC="A library for reading RAW files obtained from digital photo cameras (CRW/CR2, NEF, RAF, DNG, and others)." MAINTAINER="slaxemulator@gmail.com" LICENSE="LGPL2.1" WEB_SITE="https://www.libraw.org/" SOURCE="LibRaw" TARBALL="$SOURCE-$VERSION.tar.gz" WGET_URL="https://www.libraw.org/data/$TARBALL" DEPENDS="lcms" BUILD_DEPENDS="lcms-dev" # What is the latest version available today? current_version() { wget -O - https://www.libraw.org/download 2>/dev/null | \ sed "/latest/d;/$SOURCE-[0-9]/!d;/tar/!d;s|.*$SOURCE-\\(.*\\).tar.*|\\1|" | sort -Vr | sed q } # Rules to configure and make the package. compile_rules() { ./configure $CONFIGURE_ARGS && make -j 1 && make install } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { mkdir -p $fs/usr/lib cp -a $install/usr/bin $fs/usr cp -a $install/usr/lib/*.so* $fs/usr/lib }