forked from ports/contrib
19 lines
522 B
Plaintext
19 lines
522 B
Plaintext
# Description: memory artifact extraction utility framework
|
|
# URL: https://www.volatilesystems.com/default/volatility
|
|
# Maintainer: Thomas Penteker, tek at serverop dot de
|
|
# Depends on: python
|
|
|
|
name=volatility
|
|
version=2.3
|
|
release=1
|
|
source=(https://volatility.googlecode.com/files/volatility-${version}.tar.gz)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
/usr/bin/python setup.py install --prefix=/usr --root=$PKG
|
|
|
|
mkdir -p $PKG/usr/share/$name
|
|
mv $PKG/usr/contrib/plugins $PKG/usr/share/$name
|
|
rm -r $PKG/usr/contrib
|
|
}
|