wok annotate metasploit/receipt @ rev 20305
pppd: into dialout group
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Sun May 06 10:39:28 2018 +0200 (2018-05-06) |
parents | f233e89802cd |
children | 6e8b1bcb30e2 |
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" |
slaxemulator@9444 | 11 WEB_SITE="http://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 |