Date: Saturday, April 8, 2023 @ 05:44:24
Author: felixonmars
Revision: 1441793
archrelease: copy trunk to community-staging-any
Added:
volatility3/repos/community-staging-any/
volatility3/repos/community-staging-any/PKGBUILD
(from rev 1441792, volatility3/trunk/PKGBUILD)
----------+
PKGBUILD | 34 ++++++++++++++++++++++++++++++++++
1 file changed, 34 insertions(+)
Copied: volatility3/repos/community-staging-any/PKGBUILD (from rev 1441792,
volatility3/trunk/PKGBUILD)
===================================================================
--- community-staging-any/PKGBUILD (rev 0)
+++ community-staging-any/PKGBUILD 2023-04-08 05:44:24 UTC (rev 1441793)
@@ -0,0 +1,34 @@
+# Maintainer: Levente Polyak <anthraxx[at]archlinux[dot]org>
+# Contributor: Limao Luo <[email protected]>
+# Contributor: Wes Brown <[email protected]>
+
+pkgname=volatility3
+pkgver=2.0.1
+pkgrel=2
+pkgdesc='Advanced memory forensics framework'
+url='https://github.com/volatilityfoundation/volatility3/wiki'
+arch=('any')
+license=('custom')
+depends=(
+ 'python' 'python-yara' 'python-capstone' 'python-jsonschema'
+ 'python-pycryptodome' 'python-pefile' 'python-snappy')
+makedepends=('python-setuptools' 'python-build' 'python-installer'
'python-wheel')
+provides=('volatility')
+replaces=('volatility')
+source=(https://github.com/volatilityfoundation/volatility3/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz)
+sha512sums=('752b3fc23b3668df4329f6dbefa2ff8eb2dd63bc6e22e18774096cebae93053567727e3dc6e5ecbf7a0731459c829c37cea8ac735564c62f96a4f652ad2b6cb9')
+b2sums=('eb9b4ebb885a8dd4de2769c666b503da4bef792389efbf487815808fd514cf84f7f10b5a12926cf398a4028e7b72a5b78892c4c92d3709fea37fe13a6f32af7d')
+
+build() {
+ cd ${pkgname}-${pkgver}
+ python -m build --wheel --no-isolation
+}
+
+package() {
+ cd ${pkgname}-${pkgver}
+ python -m installer --destdir="${pkgdir}" dist/*.whl
+ install -Dm 644 README.md -t "${pkgdir}/usr/share/doc/${pkgname}"
+ install -Dm 644 LICENSE.txt -t "${pkgdir}/usr/share/licenses/${pkgname}"
+}
+
+# vim: ts=2 sw=2 et: