forked from ports/contrib
19 lines
493 B
Plaintext
19 lines
493 B
Plaintext
# Description: Tool to Detect Surrounding Shell
|
|
# URL: https://github.com/sarugaku/shellingham
|
|
# Maintainer: Tim Biermann, tbier at posteo dot de
|
|
# Depends on: python3-setuptools
|
|
|
|
name=python3-shellingham
|
|
version=1.5.0.post1
|
|
release=1
|
|
source=(https://github.com/sarugaku/shellingham/archive/$version/$name-$version.tar.gz)
|
|
|
|
build() {
|
|
cd shellingham-$version
|
|
/usr/bin/python3 setup.py build
|
|
/usr/bin/python3 setup.py install --prefix=/usr \
|
|
--root=$PKG \
|
|
-O1 \
|
|
--skip-build
|
|
}
|