blob: 4fb4d63317fee0699d010b7b0153197c62e33675 (
plain)
1 # Description: Tool to Detect Surrounding Shell
2 # URL: https://github.com/sarugaku/shellingham
3 # Maintainer: Tim Biermann, tbier at posteo dot de
4 # Depends on: python3-setuptools
5
6 name=python3-shellingham
7 version=1.5.0.post1
8 release=1
9 source=(https://github.com/sarugaku/shellingham/archive/$version/$name-$version.tar.gz)
10
11 build() {
12 cd shellingham-$version
13 /usr/bin/python3 setup.py build
14 /usr/bin/python3 setup.py install --prefix=/usr \
15 --root=$PKG \
16 -O1 \
17 --skip-build
18 }
|