wok annotate metasploit/receipt @ rev 20805
syslinux/iso2exe: add a MessageBox for Win9x (again)
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Sat Feb 16 19:05:06 2019 +0100 (2019-02-16) |
parents | 3765f181a6d5 |
children | 0994e1c4f19f |
rev | line source |
---|---|
slaxemulator@9444 | 1 # SliTaz package receipt. |
slaxemulator@9444 | 2 |
slaxemulator@9444 | 3 PACKAGE="metasploit" |
slaxemulator@9444 | 4 VERSION="3.6.0" |
slaxemulator@9444 | 5 CATEGORY="network" |
slaxemulator@9444 | 6 SHORT_DESC="The Metasploit Framework is an advanced open-source platform for developing, testing, and using exploit code" |
slaxemulator@9444 | 7 MAINTAINER="slaxemulator@gmail.com" |
pascal@15584 | 8 LICENSE="BSD" |
slaxemulator@9444 | 9 SOURCE="framework" |
slaxemulator@9444 | 10 TARBALL="$SOURCE-$VERSION.tar.bz2" |
pascal@20671 | 11 WEB_SITE="https://www.metasploit.com/" |
slaxemulator@9444 | 12 WGET_URL="http://updates.metasploit.com/data/releases/$TARBALL" |
slaxemulator@9444 | 13 |
pascal@15584 | 14 DEPENDS="ruby libpcap" |
pascal@15584 | 15 |
slaxemulator@9444 | 16 # Rules to gen a SliTaz package suitable for Tazpkg. |
slaxemulator@9444 | 17 genpkg_rules() |
slaxemulator@9444 | 18 { |
slaxemulator@9444 | 19 mkdir -p $fs/usr/share/$PACKAGE $fs/etc/profile.d |
slaxemulator@9444 | 20 cp -a $src/* $fs/usr/share/$PACKAGE |
slaxemulator@9444 | 21 echo "export PATH=$PATH:/usr/share/$PACKAGE" > $fs/etc/profile.d/$PACKAGE.sh |
slaxemulator@9444 | 22 chmod 755 $fs/etc/profile.d/$PACKAGE.sh |
slaxemulator@9444 | 23 } |
slaxemulator@9444 | 24 |