blob: 0b5329974dbc93d4528c8715902bd9dac35da3ef (
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
32
33
|
# Maintainer: mh4ckwascut <mh4ckt3mh4ckt1c4s@protonmail.com>
# Contributor: amadejpapez
# Contributor: Andrea Feletto <andrea@andreafeletto.com>
pkgname=python-stegoveritas
_pkgname=stegoVeritas
pkgver=1.10
pkgrel=1
pkgdesc='General Steganography detection tool.'
arch=('any')
url="https://github.com/bannsec/$_pkgname"
license=('GPL-2.0-only')
depends=(
'python' 'python-pillow' 'python-numpy' 'python-magic'
'python-prettytable' 'python-exifread' 'python-xmp-toolkit' 'binwalk'
'python-pypng' 'python-apng' 'python-pfp' 'python-distro'
)
makedepends=('python-setuptools')
source=("$_pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz")
sha256sums=('980e94dd3baa3c6f213ff19cd8493522f6421a7ec79bd052ba8e10d1f274c118')
build() {
cd "$srcdir/$_pkgname-$pkgver"
python setup.py build
}
package() {
cd "$srcdir/$_pkgname-$pkgver"
python setup.py install --root="$pkgdir/" --optimize=1 --skip-build
install -Dm644 'README.md' -t "$pkgdir/usr/share/doc/$pkgname"
}
|