wok-current view exiv2/receipt @ rev 4645
linux-source: add missing files.
| author | Eric Joseph-Alexandre <erjo@slitaz.org> | 
|---|---|
| date | Sat Dec 26 11:02:36 2009 +0100 (2009-12-26) | 
| parents | 209255ef5a73 | 
| children | 6e90579538d6 | 
 line source
     1 # SliTaz package receipt.
     3 PACKAGE="exiv2"
     4 VERSION="0.18.2"
     5 CATEGORY="graphics"
     6 SHORT_DESC="Exif and Iptc metadata manipulation library and tools"
     7 MAINTAINER="jozee@slitaz.org"
     8 DEPENDS="expat zlib"
     9 BUILD_DEPENDS="gcc-lib-base expat-dev zlib-dev"
    10 TARBALL="$PACKAGE-$VERSION.tar.gz"
    11 WEB_SITE="http://www.exiv2.org/"
    12 WGET_URL="$WEB_SITE/$TARBALL"
    14 # Rules to configure and make the package.
    15 compile_rules()
    16 {
    17    	cd $src
    18 	./configure \
    19 		--prefix=/usr \
    20 		$CONFIGURE_ARGS &&
    21 	make &&
    22 	make DESTDIR=$PWD/_pkg install
    23 }
    25 # Rules to gen a SliTaz package suitable for Tazpkg.
    26 genpkg_rules()
    27 {
    28     mkdir -p $fs/usr/bin
    29 	mkdir -p $fs/usr/lib
    30 	cp -a $_pkg/usr/bin $fs/usr
    31 	cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
    32 }