wok-next view check/receipt @ rev 21139

lftp: use openssl instead of gnutls
author Aleksej Bobylev <al.bobylev@gmail.com>
date Thu Jan 24 05:20:16 2019 +0200 (2019-01-24)
parents e19ff076dc63
children 386f4ebbec56
line source
1 # SliTaz package receipt v2.
3 PACKAGE="check"
4 VERSION="0.12.0"
5 CATEGORY="system-tools"
6 SHORT_DESC="A unit testing framework for C"
7 MAINTAINER="devel@slitaz.org"
8 LICENSE="LGPL2.1"
9 WEB_SITE="https://libcheck.github.io/check/"
10 LFS="http://www.linuxfromscratch.org/lfs/view/stable/chapter05/check.html"
12 TARBALL="$PACKAGE-$VERSION.tar.gz"
13 WGET_URL="https://github.com/libcheck/check/releases/download/$VERSION/$TARBALL"
14 TARBALL_SHA1="f6d95392b8c6b9efdab559e6dba239b30a389b56"
16 SPLIT="$PACKAGE-dev"
18 COOKOPTS="force-arch" # different .h
20 COPY_std="*.so*"
21 COPY_dev="@dev checkmk"
23 compile_rules() {
24 ./configure \
25 --disable-static \
26 $CONFIGURE_ARGS &&
27 fix libtool &&
28 make &&
29 make install
30 }