blob: b48667f8070acfe3f9fc1f4c0aeab33b434ea652 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
# Contributor: peeweep <peeweep at 0x0 dot ee>
pkgname=analyzemft-git
_pkgname=analyzeMFT
pkgver=20240501.b6ed04f
pkgrel=1
pkgdesc='Fully parse the MFT file from an NTFS filesystem'
arch=('any')
url="https://github.com/dkovar/analyzeMFT"
license=('CPL')
depends=('python')
makedepends=('git' 'python-setuptools')
source=("${_pkgname}::git+${url}.git")
sha256sums=('SKIP')
pkgver() {
cd "${srcdir}/${_pkgname}"
git log -1 --format='%cd.%h' --date=short | tr -d -
}
build() {
cd "${srcdir}/${_pkgname}"
python setup.py build
}
package() {
cd "${srcdir}/${_pkgname}"
python setup.py install --root="${pkgdir}/" --optimize=1 --skip-build
}
# vim:set ts=2 sw=2 et:
|