diff --git a/wfuzz/.SRCINFO b/wfuzz/.SRCINFO new file mode 100644 index 0000000..7e980ef --- /dev/null +++ b/wfuzz/.SRCINFO @@ -0,0 +1,18 @@ +pkgbase = wfuzz + pkgdesc = Utility to bruteforce web applications to find their not linked resources + pkgver = 2.3.4 + pkgrel = 2 + url = https://github.com/xmendez/wfuzz + arch = i686 + arch = x86_64 + license = GPL + depends = python2-pycurl + depends = python2-pyparsing + depends = python2-configparser + depends = python2-future + source = https://github.com/xmendez/wfuzz/archive/v2.3.4.tar.gz + md5sums = 74817cc7aa14efda785c1727622e4539 + sha256sums = 87ff36d866cb173389f90cf026136758d3af73079a6199961de12ed86568be51 + +pkgname = wfuzz + diff --git a/wfuzz/PKGBUILD b/wfuzz/PKGBUILD new file mode 100644 index 0000000..6463d60 --- /dev/null +++ b/wfuzz/PKGBUILD @@ -0,0 +1,26 @@ +#Contributor: Olivier Le Moal +#Maintainer: Dawid Wrobel +#Maintainer: Sébastien Duquette +#Maintainer: onny + +pkgname=wfuzz +pkgver=2.3.4 +pkgrel=2 +pkgdesc="Utility to bruteforce web applications to find their not linked resources" +url="https://github.com/xmendez/wfuzz" +arch=('i686' 'x86_64') +license=('GPL') +depends=('python2-pycurl' 'python2-pyparsing' 'python2-configparser' 'python2-future') +makedepends=() +conflicts=() +replaces=() +backup=() +source=("https://github.com/xmendez/wfuzz/archive/v$pkgver.tar.gz") +md5sums=('74817cc7aa14efda785c1727622e4539') +sha256sums=('87ff36d866cb173389f90cf026136758d3af73079a6199961de12ed86568be51') + + +package() { + cd "${srcdir}/${pkgname}-${pkgver}" + python2 setup.py install --prefix=/usr --root="${pkgdir}" --optimize=1 +}