wok view libqcow/receipt @ rev 20974

updated glew-dev again (1.5.8 -> 2.1.0)
author Hans-G?nter Theisgen
date Tue Mar 05 16:42:51 2019 +0100 (2019-03-05)
parents 086841d75237
children 6ab151d44024
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 LICENSE="LGPL3"
9 TARBALL="$PACKAGE-alpha-$VERSION.tar.gz"
10 WEB_SITE="https://github.com/libyal/libqcow"
11 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
13 DEPENDS="fuse libcrypto"
14 BUILD_DEPENDS="fuse-dev openssl-dev"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 ./configure --prefix=/usr --mandir=/usr/share/man \
21 --localstatedir=/var \
22 $CONFIGURE_ARGS &&
23 make &&
24 make DESTDIR=$DESTDIR install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr/lib
31 cp -a $install/usr/bin $fs/usr
32 cp -a $install/usr/lib/*.so* $fs/usr/lib
33 }