# HG changeset patch # User Hans-G?nter Theisgen # Date 1647274803 -3600 # Node ID 59786a4f765e5c5e269ec32fd6a090babf551846 # Parent e833ef850aafbb01b736f0cf6c193e211f73fe8b updated lensfun (0.3.2 -> 0.3.3) diff -r e833ef850aaf -r 59786a4f765e lensfun/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/lensfun/description.txt Mon Mar 14 17:20:03 2022 +0100 @@ -0,0 +1,11 @@ +Digital photographs are not ideal. Of course, the better is your camera, +the better the results will be, but in any case if you look carefully at +shots taken even by the most expensive cameras equipped with the most +expensive lenses you will see various artifacts. It is very hard to make +ideal cameras, because there are a lot of factors that affect the final +image quality, and at some point camera and lens designers have to trade +one factor for another to achieve the optimal image quality, within the +given design restrictions and budget. + +But we all want ideal shots, don't we? :) So that's what's Lensfun is all +about - rectifying the defects introduced by your photographic equipment. diff -r e833ef850aaf -r 59786a4f765e lensfun/receipt --- a/lensfun/receipt Mon Mar 14 16:58:50 2022 +0100 +++ b/lensfun/receipt Mon Mar 14 17:20:03 2022 +0100 @@ -1,18 +1,18 @@ # SliTaz package receipt. PACKAGE="lensfun" -VERSION="0.3.2" +VERSION="0.3.3" CATEGORY="multimedia" SHORT_DESC="Database of photographic lenses and a library that allows advanced access to the database." MAINTAINER="slaxemulator@gmail.com" LICENSE="LGPL3 GPL3" -WEB_SITE="https://sourceforge.net/projects/lensfun/" +WEB_SITE="https://lensfun.github.io/" TARBALL="$PACKAGE-$VERSION.tar.gz" -WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" +WGET_URL="https://github.com/$PACKAGE/$PACKAGE/archive/refs/tags/v$VERSION.tar.gz" DEPENDS="glib" -BUILD_DEPENDS="cmake glib-dev libpng python" +BUILD_DEPENDS="cmake glib-dev libpng" # What is the latest version available today? current_version() @@ -25,18 +25,19 @@ # Rules to configure and make the package. compile_rules() { - mkdir build - cd build + mkdir _build && + cd _build && cmake .. \ -DCMAKE_INSTALL_PREFIX=/usr && - make -j 1 all && - make INSTALL_PREFIX="$DESTDIR" install + make all && + make install INSTALL_PREFIX="$DESTDIR" } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - mkdir -p $fs/usr/lib $fs/usr/share + mkdir -p $fs/usr/lib + mkdir -p $fs/usr/share cp -a $install/usr/lib/*.so* $fs/usr/lib cp -a $install/usr/share/lensfun $fs/usr/share