wok-next view libqcow/receipt @ rev 20523

libnsgif: add missing stuff
author Aleksej Bobylev <al.bobylev@gmail.com>
date Fri Mar 23 15:16:45 2018 +0200 (2018-03-23)
parents 16a417e1e89d
children 474eb4a6385a
line source
1 # SliTaz package receipt v2.
3 PACKAGE="libqcow"
4 VERSION="20170222"
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/libqcow/releases/download/$VERSION/$TARBALL"
14 BUILD_DEPENDS="gettext openssl-dev zlib-dev fuse-dev"
15 SPLIT="libqcow-dev"
17 compile_rules() {
18 ./configure \
19 --localstatedir=/var \
20 $CONFIGURE_ARGS &&
21 make &&
22 make install
23 }
25 genpkg_rules() {
26 case $PACKAGE in
27 libqcow)
28 copy @std
29 DEPENDS="fuse openssl zlib"
30 ;;
31 *-dev)
32 copy @dev
33 DEPENDS="libqcow openssl-dev zlib-dev"
34 ;;
35 esac
36 }