wok-next view check/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 f29965805403
children
line source
1 # SliTaz package receipt v2.
3 PACKAGE="check"
4 VERSION="0.14.0"
5 CATEGORY="system-tools"
6 SHORT_DESC="A unit testing framework for C"
7 MAINTAINER="maintainer@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 # 0.12.0 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 {
25 ./configure \
26 --disable-static \
27 $CONFIGURE_ARGS &&
28 fix libtool &&
29 make &&
30 make install
31 }