wok annotate check/receipt @ rev 23854

Up dbus (1.12.18)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Jun 16 12:51:04 2020 +0000 (2020-06-16)
parents af301d113686
children 5ea0ce1cecc0
rev   line source
erjo@13410 1 # SliTaz package receipt.
erjo@13410 2
erjo@13410 3 PACKAGE="check"
Hans-G?nter@22591 4 VERSION="0.13.0"
erjo@13410 5 CATEGORY="system-tools"
Hans-G?nter@22591 6 SHORT_DESC="A unit testing framework for C."
erjo@13410 7 MAINTAINER="erjo@slitaz.org"
pascal@15202 8 LICENSE="LGPL2.1"
Hans-G?nter@20780 9 WEB_SITE="https://libcheck.github.io/check/"
Hans-G?nter@20780 10
erjo@13410 11 TARBALL="$PACKAGE-$VERSION.tar.gz"
Hans-G?nter@20780 12 WGET_URL="https://github.com/libcheck/$PACKAGE/archive/$VERSION.tar.gz"
erjo@13410 13
erjo@13410 14 DEPENDS=""
Hans-G?nter@20782 15 BUILD_DEPENDS="autoconf automake libtool"
Hans-G?nter@22591 16
Hans-G?nter@20780 17 HOST_ARCH="i486 arm"
erjo@13410 18
erjo@13410 19 # Rules to configure and make the package.
erjo@13410 20 compile_rules()
erjo@13410 21 {
Hans-G?nter@22591 22 autoreconf --install &&
Hans-G?nter@20780 23 ./configure $CONFIGURE_ARGS &&
Hans-G?nter@20780 24 make &&
Hans-G?nter@20780 25 make install
erjo@13410 26 }
erjo@13410 27
erjo@13410 28 # Rules to gen a SliTaz package suitable for Tazpkg.
erjo@13410 29 genpkg_rules()
erjo@13410 30 {
erjo@13410 31 mkdir -p $fs/usr/lib
Hans-G?nter@22591 32 cp -a $install/usr/lib/*.so* $fs/usr/lib
erjo@13410 33 }