wok-next view libqcow/receipt @ rev 20790

1. update also pinentry-gtk to new version 2. add to both fltk-dev so fltk-config is found 3. I want to force also a build to see if it really builds OKish here (see wok-build)
author Erkan Yilmaz <erkan@slitaz.org>
date Sat Jun 09 11:23:42 2018 +0000 (2018-06-09)
parents 474eb4a6385a
children d5aab818505e
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 fuse2-dev"
15 SPLIT="libqcow-dev"
17 compile_rules() {
18 ./configure \
19 --localstatedir=/var \
20 $CONFIGURE_ARGS &&
21 fix libtool &&
22 make &&
23 make install
24 }
26 genpkg_rules() {
27 case $PACKAGE in
28 libqcow)
29 copy @std
30 DEPENDS="fuse2 openssl zlib"
31 ;;
32 *-dev)
33 copy @dev
34 DEPENDS="libqcow openssl-dev zlib-dev"
35 ;;
36 esac
37 }