summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 3d52e34f1dca35d9548ebb9a498063778478c427 (plain)
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
# Maintainer: lightning1141 <lightning1141@gmail.com>
pkgname=pocsuite-git
pkgdesc="Pocsuite is A remote vulnerability test framework developed by Knownsec Security Team. http://sebug.net"
pkgver=1b9ec54.20150917
pkgrel=1
arch=('any')
url="https://github.com/knownsec/Pocsuite"
license=('GPL2')
depends=('python2')
provides=('pocsuite')
conflicts=('pocsuite')
makedepends=('git')
options=('!strip')
source=("git://github.com/knownsec/Pocsuite.git")
md5sums=(SKIP)

_repo_name=Pocsuite

pkgver() {
  cd "$srcdir/$_repo_name"
  _author_ver=$(git describe --always | sed 's|-|.|g;s|0\.9|1.0dev|')
  _last_commit_date=$(git log -1 --pretty='%cd' --date=short | tr -d '-')
  echo $_author_ver.$_last_commit_date
}

package() {
  cd "$srcdir/$_repo_name"

  install -dm755 "$pkgdir/usr/bin"
  install -dm755 "$pkgdir/opt/pocsuite"
  sed -i "s/\#\!.*python/&2/" `grep -rl "\#\!.*python"`

  cp -R --no-preserve=ownership pocsuite "$pkgdir/opt/"
  cat > "$pkgdir/usr/bin/pocsuite" << EOF
#!/bin/bash
cd /opt/pocsuite
python2 pocsuite.py "\$@"
EOF
  cat > "$pkgdir/usr/bin/pcs-console" << EOF
#!/bin/bash
cd /opt/pocsuite
python2 pcs-console.py "\$@"
EOF
  cat > "$pkgdir/usr/bin/pcs-attack" << EOF
#!/bin/bash
cd /opt/pocsuite
python2 pcs-attack.py "\$@"
EOF
  cat > "$pkgdir/usr/bin/pcs-verify" << EOF
#!/bin/bash
cd /opt/pocsuite
python2 pcs-verify.py "\$@"
EOF
  chmod 755 "$pkgdir/usr/bin/pocsuite"
  chmod 755 "$pkgdir/usr/bin/pcs-console"
  chmod 755 "$pkgdir/usr/bin/pcs-attack"
  chmod 755 "$pkgdir/usr/bin/pcs-verify"
}