wok view libqcow/receipt @ rev 13949

add python dnspython
author ernia <monghitri@aruba.it>
date Tue Jan 29 20:56:57 2013 +0000 (2013-01-29)
parents
children 086841d75237
line source
1 # SliTaz package receipt.
3 PACKAGE="libqcow"
4 VERSION="20120225"
5 CATEGORY="misc"
6 SHORT_DESC="Tools for reading QEMU Copy-On-Write (QCOW) image files."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 TARBALL="$PACKAGE-alpha-$VERSION.tar.gz"
9 WEB_SITE="http://libqcow.sourceforge.net/"
10 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
12 DEPENDS="fuse libcrypto"
13 BUILD_DEPENDS="fuse-dev openssl-dev"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 ./configure --prefix=/usr --mandir=/usr/share/man \
20 --localstatedir=/var \
21 $CONFIGURE_ARGS &&
22 make &&
23 make DESTDIR=$DESTDIR install
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
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 }