26 lines
596 B
Plaintext
26 lines
596 B
Plaintext
# description: SpiderFoot, the open source footprinting and intelligence-gathering tool.
|
|
# url:https://github.com/smicallef/spiderfoot
|
|
# packager:milisarge
|
|
# Depends on: python swig libxslt
|
|
|
|
|
|
name=spiderfoot-virtualenv
|
|
version=v2.6.1-final
|
|
release=1
|
|
|
|
source=(https://github.com/smicallef/spiderfoot/archive/v2.6.1-final.tar.gz deps)
|
|
|
|
|
|
build () {
|
|
pip_kur
|
|
pip2 install virtualenv
|
|
mkdir -p $PKG/usr/share/$name
|
|
cd $PKG/usr/share/$name
|
|
virtualenv --python=python2.7 env
|
|
#python modulleri yukleme
|
|
env/bin/pip2 install -r $SRC/deps
|
|
cd -
|
|
cp -r spiderfoot-2.6.1-final/* $PKG/usr/share/$name/
|
|
}
|
|
|