wok-next view check/receipt @ rev 20636

Fix "can't execute '/usr/bin/update-mime-database': No such file or directory"
author Aleksej Bobylev <al.bobylev@gmail.com>
date Fri Apr 27 15:12:17 2018 +0300 (2018-04-27)
parents 90a5eb560fd6
children 8db06e7505f5
line source
1 # SliTaz package receipt v2.
3 PACKAGE="check"
4 VERSION="0.11.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/"
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"
15 SPLIT="check-dev"
17 compile_rules() {
18 ./configure \
19 --disable-static \
20 $CONFIGURE_ARGS &&
21 fix libtool &&
22 make &&
23 make install
24 }
26 genpkg_rules() {
27 case $PACKAGE in
28 check) copy *.so* ;;
29 *-dev) copy @dev checkmk ;;
30 esac
31 }