wok-next view splint/receipt @ rev 21020

Cleaning is almost finished... I should proceed to upgrades.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Fri Nov 02 14:15:08 2018 +0200 (2018-11-02)
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 }