wok view lensfun/receipt @ rev 14517

linux: fix local privilege escalation 0day, 2.6.37 - 3.8.10
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu May 16 16:02:27 2013 +0200 (2013-05-16)
parents 403c9f8b5925
children 2a5cc8208d36
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 glib-dev"
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 }