wok-next view splint/receipt @ rev 21720

qt4: replaced libIDL by libidl
author Hans-G?nter Theisgen
date Wed Aug 05 09:22:38 2020 +0100 (2020-08-05)
parents ee15b6380b31
children
line source
1 # SliTaz package receipt.
3 PACKAGE="splint"
4 VERSION="3.1.2"
5 CATEGORY="development"
6 SHORT_DESC="A tool for statically checking C programs for security vulnerabilities and coding mistakes"
7 MAINTAINER="devel@slitaz.org"
8 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.src.tgz"
10 WEB_SITE="http://www.splint.org/"
11 WGET_URL="http://www.splint.org/downloads/$TARBALL"
13 BUILD_DEPENDS="flex autoconf automake libtool"
15 compile_rules() {
16 autoreconf -i
17 ./configure $CONFIGURE_ARGS &&
18 make -j1 &&
19 make install
20 }
22 genpkg_rules() {
23 mkdir -p $fs/usr
24 cp -a $install/usr/bin $fs/usr
25 cp -a $install/usr/share $fs/usr
26 }