wok view metasploit/receipt @ rev 23425
fusecloop: arch fix
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Wed Apr 01 11:42:26 2020 +0200 (2020-04-01) |
parents | 0994e1c4f19f |
children | 3ae2d1f7b186 |
line source
1 # SliTaz package receipt.
3 PACKAGE="metasploit"
4 VERSION="5.0.80"
5 CATEGORY="network"
6 SHORT_DESC="An advanced open-source platform for developing, testing, and using exploit code."
7 MAINTAINER="slaxemulator@gmail.com"
8 LICENSE="BSD"
9 WEB_SITE="https://www.metasploit.com/"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="https://github.com/rapid7/$PACKAGE-framework/archive/$VERSION.tar.gz"
14 DEPENDS="libpcap ruby"
16 # Rules to gen a SliTaz package suitable for Tazpkg.
17 genpkg_rules()
18 {
19 mkdir -p $fs/usr/share/$PACKAGE
20 mkdir -p $fs/etc/profile.d
22 cp -a $src/* $fs/usr/share/$PACKAGE
23 echo "export PATH=$PATH:/usr/share/$PACKAGE" > \
24 $fs/etc/profile.d/$PACKAGE.sh
25 chmod 755 $fs/etc/profile.d/$PACKAGE.sh
26 }