wok view libqcow/receipt @ rev 23595

updated qoauth (1.0 -> 2.0.0)
author Hans-G?nter Theisgen
date Wed Apr 08 14:40:29 2020 +0100 (2020-04-08)
parents 8dd8bab3f0ca
children 5ea0ce1cecc0
line source
1 # SliTaz package receipt.
3 PACKAGE="libqcow"
4 VERSION="20181227"
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 WEB_SITE="https://github.com/libyal/libqcow"
11 TARBALL="$PACKAGE-alpha-$VERSION.tar.gz"
12 WGET_URL="https://github.com/libyal/$PACKAGE/releases/download/$VERSION/$TARBALL"
14 DEPENDS="fuse libcrypto"
15 BUILD_DEPENDS="fuse-dev openssl-dev"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 ./configure \
21 --prefix=/usr \
22 --mandir=/usr/share/man \
23 --localstatedir=/var \
24 $CONFIGURE_ARGS &&
25 make -j 1 &&
26 make DESTDIR=$DESTDIR install
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 mkdir -p $fs/usr/lib
34 cp -a $install/usr/bin $fs/usr
35 cp -a $install/usr/lib/*.so* $fs/usr/lib
36 }