wok annotate splint/receipt @ rev 20305
pppd: into dialout group
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Sun May 06 10:39:28 2018 +0200 (2018-05-06) |
parents | 877323c753e7 |
children | 934055de50e2 |
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@17740 | 13 BUILD_DEPENDS="flex autoconf automake libtool" |
pascal@15593 | 14 |
rocky@4087 | 15 # Rules to configure and make the package. |
rocky@4087 | 16 compile_rules() |
rocky@4087 | 17 { |
pascal@17740 | 18 autoreconf -i |
pascal@17740 | 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 } |