wok annotate check/receipt @ rev 20848

updated directfb again (1.4.3 -> 1.7.7)
author Hans-G?nter Theisgen
date Thu Feb 21 14:21:46 2019 +0100 (2019-02-21)
parents aacfeda38a0b
children 5fa396eb0eeb
rev   line source
erjo@13410 1 # SliTaz package receipt.
erjo@13410 2
erjo@13410 3 PACKAGE="check"
Hans-G?nter@20780 4 VERSION="0.12.0"
erjo@13410 5 CATEGORY="system-tools"
erjo@13410 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@20780 16 HOST_ARCH="i486 arm"
erjo@13410 17
erjo@13410 18 # Rules to configure and make the package.
erjo@13410 19 compile_rules()
erjo@13410 20 {
Hans-G?nter@20780 21 autoreconf --install
Hans-G?nter@20780 22 ./configure $CONFIGURE_ARGS &&
Hans-G?nter@20780 23 make &&
Hans-G?nter@20780 24 make install
erjo@13410 25 }
erjo@13410 26
erjo@13410 27 # Rules to gen a SliTaz package suitable for Tazpkg.
erjo@13410 28 genpkg_rules()
erjo@13410 29 {
erjo@13410 30 mkdir -p $fs/usr/lib
erjo@13410 31 cp -a $install/usr/lib/*.so* $fs/usr/lib
erjo@13410 32 }