wok view lensfun/receipt @ rev 12074

gnome-keyring: fix deps/bdeps
author Antoine Bodin <gokhlayeh@slitaz.org>
date Fri Mar 09 05:27:20 2012 +0100 (2012-03-09)
parents
children cdf0429a5242
line source
1 # SliTaz package receipt.
3 PACKAGE="lensfun"
4 VERSION="0.2.5"
5 CATEGORY="multimedia"
6 SHORT_DESC="Database of photographic lenses and a library that allows advanced access to the database"
7 MAINTAINER="slaxemulator@gmail.com"
8 DEPENDS="glib"
9 BUILD_DEPENDS="python libpng"
10 TARBALL="$PACKAGE-$VERSION.tar.bz2"
11 WEB_SITE="http://lensfun.berlios.de/"
12 WGET_URL="http://download.berlios.de/$PACKAGE/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 ./configure --prefix=/usr --libdir=/usr/lib &&
19 make all &&
20 make INSTALL_PREFIX="$DESTDIR" install
21 }
23 # Rules to gen a SliTaz package suitable for Tazpkg.
24 genpkg_rules()
25 {
26 mkdir -p $fs/usr/lib $fs/usr/share
27 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
28 cp -a $_pkg/usr/share/lensfun $fs/usr/share
29 }