wok-next annotate splint/receipt @ rev 17163
Add wkhtmltopdf
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Thu Sep 18 12:48:08 2014 +0200 (2014-09-18) |
parents | b7319995b37e |
children | 877323c753e7 |
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 |
pascal@15593 | 13 BUILD_DEPENDS="flex" |
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 } |