You are not logged in.
here's a pkgbuild I've done, it could use a bit of path tweaking, but it runs as well as i think it can. wicrawl is still alpha, so some bugs are in it. but i think the plugin setup is pretty promising. if people like it I will put it in aur.
wicrawl is a wifi scanner that can run scripts/plugins (nessus etc) on each network it finds.
the perl-* deps are/will be shortly on xterminus' perl package mirror. http://wiki.archlinux.org/index.php/PerlCPAN_Repository
cheers
edit: bbcode doesn't like my patch so i posted it to aur after all
http://aur.archlinux.org/packages.php?d … =1&ID=7180
PKGBUILD:
pkgname=wicrawl
pkgver=0.3a
pkgrel=1
pkgdesc="Wicrawl is a simple wi-fi (802.11x) Access Point auditor with a simple and flexible plugin architecture."
url="http://midnightresearch.com/projects/wicrawl/"
license="GPL"
depends=(libpcap gtk2-perl glib-perl perl-xml-smart perl-object-multitype)
makedepends=()
conflicts=()
replaces=()
backup=()
install=
source=(http://midnightresearch.com/local/packages/wicrawl/$pkgname-$pkgver.tgz arch-fix-paths.patch)
md5sums=(4fa32fd6767aac604ba341a8fb56a071 7c19db1f6409e1f003b936ec5e23e815)
build() {
cd $startdir/src/$pkgname-$pkgver
patch -p1 < $startdir/arch-fix-paths.patch || return 1
export MAKEFLAGS="-j1" #pkg fails with -j3
make || return 1
make DESTDIR=$startdir/pkg install
}
Offline
Your PKGBUILD is broken. It looks like you pasted the patch inside the PKGBUILD when you posted on the forum.
Also the license field should be: license="GPL"
Offline