Advertisement
Guest User

thc-ipv6-1.8

a guest
Aug 24th, 2011
239
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.68 KB | None | 0 0
  1. # Contributors:
  2. # henning mueller <henning@orgizm.net>
  3.  
  4. pkgname=thc-ipv6
  5. pkgver=1.8
  6. pkgrel=1
  7. pkgdesc='A complete tool set to attack the inherent protocol weaknesses of IPv6 and ICMP6, and includes an easy to use packet factory library.'
  8. url=http://freeworld.thc.org/thc-ipv6/
  9. source=(http://www.thc.org/releases/$pkgname-$pkgver.tar.gz)
  10.  
  11. md5sums=(ae5d4180dae0763d315493ac7c825033)
  12. depends=(libpcap openssl)
  13. arch=(i686 x86_64)
  14. license=(GPL)
  15.  
  16. build() {
  17. cd $srcdir/$pkgname-$pkgver
  18. sed -i 's:+=:=:' Makefile
  19. make clean all
  20. }
  21.  
  22. package() {
  23. cd $srcdir/$pkgname-$pkgver
  24. for bin in $(find . -type f -perm /o+x); do
  25. install -D $bin $pkgdir/usr/bin/$bin
  26. done
  27. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement