blob: c159de5adb49340353cba0cbc47c42f753045dc2 (
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
# Contributor: Fabian Affolter <fabian@affolter-engineering.ch>
# Maintainer: Fabian Affolter <fabian@affolter-engineering.ch>
pkgname=ncrack
pkgver=0.4
pkgrel=0.alpha
pkgdesc="A network authentication cracking tool"
url="http://nmap.org/ncrack/"
arch="all"
license="GPL2 with exceptions"
depends=""
depends_dev=""
makedepends="openssl-dev"
install=""
subpackages="$pkgname-doc"
source="http://nmap.org/ncrack/dist/$pkgname-"$pkgver"ALPHA.tar.gz"
_builddir="$srcdir"/$pkgname-"$pkgver"ALPHA
prepare() {
local i
cd "$_builddir"
for i in $source; do
case $i in
*.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;;
esac
done
}
build() {
cd "$_builddir"
./configure \
--without-zlib-version-check \
--prefix=/usr \
--sysconfdir=/etc \
--mandir=/usr/share/man \
--infodir=/usr/share/info \
|| return 1
make || return 1
}
package() {
cd "$_builddir"
make DESTDIR="$pkgdir" install || return 1
rm -f "$pkgdir"/usr/lib/*.la
}
md5sums="db9be165469c04650ddc7403b29eb472 ncrack-0.4ALPHA.tar.gz"
|