blob: 07415eccc5a440bc726c7cfb0fe671698d15796c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
# $Id: PKGBUILD 2039 2009-09-07 16:30:22Z spupykin $
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
# Contributor: William Rea <sillywilly@gmail.com>
pkgname=splint
pkgver=3.1.2
pkgrel=2
pkgdesc="A tool for statically checking C programs for security vulnerabilities and coding mistakes"
arch=('i686' 'x86_64' 'mips64el')
url="http://www.splint.org"
license=('GPL')
depends=('glibc')
source=(http://www.splint.org/downloads/splint-$pkgver.src.tgz \
splint.sh)
md5sums=('25f47d70bd9c8bdddf6b03de5949c4fd'
'0efb6341b384dc44590989fe3678c96c')
build() {
cd $startdir/src/splint-$pkgver
[ $NOEXTRACT -eq 1 ] || ./configure --prefix=/usr --mandir=/usr/share/man
make || return 1
make DESTDIR=$startdir/pkg install || return 1
install -D -m755 ../splint.sh $startdir/pkg/etc/profile.d/splint.sh
}
|