blob: 28ef11d22a4ad771a76c102af8000810f4325146 (
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
|
# Maintainer: robertfoster
pkgname=blindelephant-svn
pkgver=7
pkgrel=1
pkgdesc="The BlindElephant Web Application Fingerprinter attempts to discover the version of a (known) web application by comparing static files at known locations "
url="http://blindelephant.sourceforge.net/"
arch=('i686' 'x86_64')
makedepends=('subversion')
depends=('python2')
license=(LGPL)
source=("blindelephant::svn+https://svn.code.sf.net/p/blindelephant/code/trunk")
package() {
cd blindelephant/src
python2 setup.py install --root=$pkgdir
}
pkgver() {
cd blindelephant
svnversion | tr -d [A-z]
}
md5sums=('SKIP')
|