wok view splint/receipt @ rev 10999

Up: tree to 1.6.0.
author Christopher Rogers <slaxemulator@gmail.com>
date Thu Oct 13 02:53:31 2011 +0000 (2011-10-13)
parents ae751389abd4
children b7319995b37e
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="rocky@slitaz.org"
8 BUILD_DEPENDS="flex"
9 TARBALL="$PACKAGE-$VERSION.src.tgz"
10 WEB_SITE="http://www.splint.org/"
11 WGET_URL="http://www.splint.org/downloads/$TARBALL"
13 # Rules to configure and make the package.
14 compile_rules()
15 {
16 cd $src
17 ./configure && make -j1 && make install
18 }
20 # Rules to gen a SliTaz package suitable for Tazpkg.
21 genpkg_rules()
22 {
23 mkdir -p $fs/usr
24 cp -a $_pkg/usr/bin $fs/usr
25 cp -a $_pkg/usr/share $fs/usr
26 }