-
Notifications
You must be signed in to change notification settings - Fork 2.5k
Expand file tree
/
Copy pathtemplate
More file actions
26 lines (23 loc) · 801 Bytes
/
template
File metadata and controls
26 lines (23 loc) · 801 Bytes
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
# Template file for 'sqlmap'
pkgname=sqlmap
version=1.10.2
revision=1
pycompile_dirs="usr/libexec/sqlmap"
depends="python3"
short_desc="Automatic SQL injection and database takeover tool"
maintainer="Andrew Benson <abenson+void@gmail.com>"
license="GPL-2.0-or-later"
homepage="http://sqlmap.org"
distfiles="https://github.com/sqlmapproject/sqlmap/archive/${version}.tar.gz"
checksum=092aab5def8149657899ee37266ef9b6dc93d2de6983fbd97726546ba8fe3dbd
python_version=3
do_install() {
vmkdir usr/libexec/${pkgname}
for dir in data extra lib plugins tamper thirdparty sqlmap.py sqlmapapi.py; do
vcopy $dir usr/libexec/${pkgname}
done
vmkdir usr/bin
ln -sf /usr/libexec/${pkgname}/sqlmap.py ${DESTDIR}/usr/bin/
ln -sf /usr/libexec/${pkgname}/sqlmapapi.py ${DESTDIR}/usr/bin/
vsconf sqlmap.conf
}