wok view libexif/receipt @ rev 15741

gnucash: set license to GPL2
author Dominique Corbex <domcox@slitaz.org>
date Wed Jan 01 20:51:00 2014 +0100 (2014-01-01)
parents 4e4f01ca9362
children 38c69652a653
line source
1 # SliTaz package receipt.
3 PACKAGE="libexif"
4 VERSION="0.6.20"
5 CATEGORY="system-tools"
6 SHORT_DESC="Reads and writes EXIF metainformation from and to image files."
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="LGPL2.1"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://libexif.sourceforge.net/"
11 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
13 # Rules to configure and make the package.
14 compile_rules()
15 {
16 cd $src
17 ./configure \
18 --prefix=/usr \
19 $CONFIGURE_ARGS
20 make
21 make DESTDIR=$DESTDIR install
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr/lib
28 cp -a $install/usr/lib/*.so* $fs/usr/lib
29 }