wok annotate splint/receipt @ rev 17719

fatback, split: update bdeps
author Yuri Pourre <yuripourre@gmail.com>
date Thu Mar 05 11:18:13 2015 -0300 (2015-03-05)
parents 3b4e4318134e
children ee15b6380b31
rev   line source
rocky@4087 1 # SliTaz package receipt.
rocky@4087 2
rocky@4087 3 PACKAGE="splint"
rocky@4087 4 VERSION="3.1.2"
rocky@4087 5 CATEGORY="development"
rocky@4087 6 SHORT_DESC="A tool for statically checking C programs for security vulnerabilities and coding mistakes."
rocky@4087 7 MAINTAINER="rocky@slitaz.org"
pascal@15593 8 LICENSE="GPL2"
rocky@4087 9 TARBALL="$PACKAGE-$VERSION.src.tgz"
rocky@4087 10 WEB_SITE="http://www.splint.org/"
rocky@4087 11 WGET_URL="http://www.splint.org/downloads/$TARBALL"
rocky@4087 12
yuripourre@17719 13 BUILD_DEPENDS="flex bison"
pascal@15593 14
rocky@4087 15 # Rules to configure and make the package.
rocky@4087 16 compile_rules()
rocky@4087 17 {
rocky@4087 18 cd $src
gokhlayeh@11573 19 ./configure $CONFIGURE_ARGS && make -j1 && make install
rocky@4087 20 }
rocky@4087 21
rocky@4087 22 # Rules to gen a SliTaz package suitable for Tazpkg.
rocky@4087 23 genpkg_rules()
rocky@4087 24 {
rocky@4087 25 mkdir -p $fs/usr
pascal@15593 26 cp -a $install/usr/bin $fs/usr
pascal@15593 27 cp -a $install/usr/share $fs/usr
rocky@4087 28 }