blob: 465ffb243a9816e301eb538fc484960aea9c3f5b (
plain)
1 # Description: memory artifact extraction utility framework
2 # URL: https://github.com/volatilityfoundation/volatility/wiki
3 # Maintainer: Thomas Penteker, tek at serverop dot de
4 # Depends on: python-setuptools
5
6 name=volatility
7 version=2.6
8 release=1
9 source=(https://github.com/volatilityfoundation/$name/archive/$version.tar.gz)
10
11 build() {
12 cd $name-$version
13 /usr/bin/python setup.py install --prefix=/usr --root=$PKG
14
15 install -d $PKG/usr/share/$name
16 mv $PKG/usr/tools $PKG/usr/share/$name
17 mv $PKG/usr/contrib $PKG/usr/share/$name
18 /usr/bin/python -m compileall $PKG/usr/share
19 }
|