wok rev 24710

updated lensfun (0.3.2 -> 0.3.3)
author Hans-G?nter Theisgen
date Mon Mar 14 17:20:03 2022 +0100 (2022-03-14)
parents e833ef850aaf
children 2cd3f255f983
files lensfun/description.txt lensfun/receipt
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/lensfun/description.txt	Mon Mar 14 17:20:03 2022 +0100
     1.3 @@ -0,0 +1,11 @@
     1.4 +Digital photographs are not ideal. Of course, the better is your camera,
     1.5 +the better the results will be, but in any case if you look carefully at
     1.6 +shots taken even by the most expensive cameras equipped with the most
     1.7 +expensive lenses you will see various artifacts. It is very hard to make
     1.8 +ideal cameras, because there are a lot of factors that affect the final
     1.9 +image quality, and at some point camera and lens designers have to trade
    1.10 +one factor for another to achieve the optimal image quality, within the
    1.11 +given design restrictions and budget.
    1.12 +
    1.13 +But we all want ideal shots, don't we? :) So that's what's Lensfun is all
    1.14 +about - rectifying the defects introduced by your photographic equipment.
     2.1 --- a/lensfun/receipt	Mon Mar 14 16:58:50 2022 +0100
     2.2 +++ b/lensfun/receipt	Mon Mar 14 17:20:03 2022 +0100
     2.3 @@ -1,18 +1,18 @@
     2.4  # SliTaz package receipt.
     2.5  
     2.6  PACKAGE="lensfun"
     2.7 -VERSION="0.3.2"
     2.8 +VERSION="0.3.3"
     2.9  CATEGORY="multimedia"
    2.10  SHORT_DESC="Database of photographic lenses and a library that allows advanced access to the database."
    2.11  MAINTAINER="slaxemulator@gmail.com"
    2.12  LICENSE="LGPL3 GPL3"
    2.13 -WEB_SITE="https://sourceforge.net/projects/lensfun/"
    2.14 +WEB_SITE="https://lensfun.github.io/"
    2.15  
    2.16  TARBALL="$PACKAGE-$VERSION.tar.gz"
    2.17 -WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
    2.18 +WGET_URL="https://github.com/$PACKAGE/$PACKAGE/archive/refs/tags/v$VERSION.tar.gz"
    2.19  
    2.20  DEPENDS="glib"
    2.21 -BUILD_DEPENDS="cmake glib-dev libpng python"
    2.22 +BUILD_DEPENDS="cmake glib-dev libpng"
    2.23  
    2.24  # What is the latest version available today?
    2.25  current_version()
    2.26 @@ -25,18 +25,19 @@
    2.27  # Rules to configure and make the package.
    2.28  compile_rules()
    2.29  {
    2.30 -	mkdir	build
    2.31 -	cd	build
    2.32 +	mkdir	_build &&
    2.33 +	cd	_build &&
    2.34  	cmake	..				\
    2.35  		-DCMAKE_INSTALL_PREFIX=/usr &&
    2.36 -	make -j 1 all && 
    2.37 -	make INSTALL_PREFIX="$DESTDIR" install
    2.38 +	make	all && 
    2.39 +	make	install INSTALL_PREFIX="$DESTDIR"
    2.40  }
    2.41  
    2.42  # Rules to gen a SliTaz package suitable for Tazpkg.
    2.43  genpkg_rules()
    2.44  {
    2.45 -	mkdir -p $fs/usr/lib $fs/usr/share
    2.46 +	mkdir -p $fs/usr/lib
    2.47 +	mkdir -p $fs/usr/share
    2.48  
    2.49  	cp -a $install/usr/lib/*.so*		$fs/usr/lib
    2.50  	cp -a $install/usr/share/lensfun	$fs/usr/share