wok-next view libqmi/receipt @ rev 21722

efivar: typo in post_install
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Sep 01 10:31:46 2020 +0000 (2020-09-01)
parents e19ff076dc63
children
line source
1 # SliTaz package receipt v2.
3 PACKAGE="libqmi"
4 VERSION="1.24.2"
5 CATEGORY="network"
6 SHORT_DESC="Qualcomm MSM Interface (QMI) protocol implementation"
7 MAINTAINER="al.bobylev@gmail.com"
8 LICENSE="GPL2 LGPL2.1"
9 WEB_SITE="https://www.freedesktop.org/wiki/Software/libqmi/"
10 LFS="http://www.linuxfromscratch.org/blfs/view/svn/general/libqmi.html"
12 TARBALL="$PACKAGE-$VERSION.tar.xz"
13 WGET_URL="https://www.freedesktop.org/software/libqmi/$TARBALL"
15 COOKOPTS="force-arch" # different .h
17 BUILD_DEPENDS="glib-dev libgudev-dev libmbim-dev"
18 SPLIT="$PACKAGE-dev"
20 compile_rules()
21 {
22 ./configure \
23 --disable-static \
24 $CONFIGURE_ARGS &&
25 fix libtool &&
26 make &&
27 make install
28 }
30 genpkg_rules()
31 {
32 case $PACKAGE in
33 libqmi)
34 copy @std
35 DEPENDS="glib libgudev libmbim"
36 ;;
37 *-dev)
38 copy @dev
39 DEPENDS="glib-dev libqmi"
40 ;;
41 esac
42 }