2013-11-05 22:07:53 +01:00
|
|
|
# Description: memory artifact extraction utility framework
|
|
|
|
# URL: https://www.volatilesystems.com/default/volatility
|
|
|
|
# Maintainer: Thomas Penteker, tek at serverop dot de
|
2014-05-09 23:07:14 +02:00
|
|
|
# Depends on: python
|
2013-11-05 22:07:53 +01:00
|
|
|
|
|
|
|
name=volatility
|
2014-07-15 00:43:00 +02:00
|
|
|
version=2.3
|
2013-11-05 22:07:53 +01:00
|
|
|
release=1
|
2014-07-15 00:43:00 +02:00
|
|
|
source=(https://volatility.googlecode.com/files/volatility-${version}.tar.gz)
|
2013-11-05 22:07:53 +01:00
|
|
|
|
|
|
|
build() {
|
|
|
|
cd $name-$version
|
2014-05-09 23:07:14 +02:00
|
|
|
/usr/bin/python setup.py install --prefix=/usr --root=$PKG
|
2013-11-05 22:07:53 +01:00
|
|
|
|
|
|
|
mkdir -p $PKG/usr/share/$name
|
|
|
|
mv $PKG/usr/contrib/plugins $PKG/usr/share/$name
|
|
|
|
rm -r $PKG/usr/contrib
|
|
|
|
}
|