28 lines
874 B
Plaintext
28 lines
874 B
Plaintext
# Description: web application security scanner
|
|
# URL: http://code.google.com/p/skipfish/
|
|
# Maintainer: Thomas Penteker, tek at serverop dot de
|
|
# Depends on: libpcre openssl zlib libidn
|
|
|
|
name=skipfish
|
|
version=2.10b
|
|
release=1
|
|
source=(https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/$name/$name-$version.tgz)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
|
|
sed -i -e 's|"assets"|"/usr/share/skipfish/assets"|g' src/config.h
|
|
sed -i -e 's|"signatures/|"/usr/share/skipfish/signatures/|g' src/config.h
|
|
sed -i -e 's|include signatures/|include /usr/share/skipfish/signatures/|g' signatures/signatures.conf
|
|
|
|
make
|
|
rm assets/COPYING
|
|
|
|
for i in assets dictionaries signatures; do
|
|
install -m 755 -d $PKG/usr/share/skipfish/"$i"
|
|
install -m 644 "$i"/* $PKG/usr/share/skipfish/"$i"
|
|
done
|
|
|
|
install -m 755 -D skipfish $PKG/usr/bin/skipfish
|
|
}
|