# This file is part of BlackArch Linux ( https://www.blackarch.org/ ). # See COPYING for license details. pkgname=plown pkgver=13.ccf998c pkgrel=4 groups=('blackarch' 'blackarch-webapp') pkgdesc='A security scanner for Plone CMS.' arch=('any') url='https://github.com/unweb/plown' license=('unknown') depends=('python2') makedepends=('git') source=("git+https://github.com/unweb/$pkgname.git") sha512sums=('SKIP') pkgver() { cd $pkgname echo $(git rev-list --count HEAD).$(git rev-parse --short HEAD) } prepare() { cd $pkgname sed -i 's|/usr/bin/python|/usr/bin/python2|' "$pkgname.py" } package() { cd $pkgname install -dm 755 "$pkgdir/usr/bin" install -dm 755 "$pkgdir/usr/share/$pkgname" cp -a * "$pkgdir/usr/share/$pkgname" cat > "$pkgdir/usr/bin/$pkgname" << EOF #!/bin/sh exec python2 /usr/share/$pkgname/$pkgname.py "\$@" EOF chmod +x "$pkgdir/usr/bin/$pkgname" }