wok view check/receipt @ rev 22278

updated xorg-xf86-video-s3 (0.6.5 -> 0.7.0)
author Hans-G?nter Theisgen
date Wed Nov 13 14:12:45 2019 +0100 (2019-11-13)
parents aacfeda38a0b
children 5fa396eb0eeb
line source
1 # SliTaz package receipt.
3 PACKAGE="check"
4 VERSION="0.12.0"
5 CATEGORY="system-tools"
6 SHORT_DESC="A unit testing framework for C"
7 MAINTAINER="erjo@slitaz.org"
8 LICENSE="LGPL2.1"
9 WEB_SITE="https://libcheck.github.io/check/"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="https://github.com/libcheck/$PACKAGE/archive/$VERSION.tar.gz"
14 DEPENDS=""
15 BUILD_DEPENDS="autoconf automake libtool"
16 HOST_ARCH="i486 arm"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 autoreconf --install
22 ./configure $CONFIGURE_ARGS &&
23 make &&
24 make install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr/lib
31 cp -a $install/usr/lib/*.so* $fs/usr/lib
32 }