summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 8b31fab0d7857e27ff8d2fc345cc180803187f4a (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
34
35
# Maintainer: Xeonacid <h.dwwwwww@gmail.com>
# Maintainer: Wu Zhenyu <wuzhenyu@ustc.edu>

_name=adversarial-attacks-pytorch
_pkgname=torchattacks
pkgname=python-$_pkgname
pkgver=3.5.1
pkgrel=1
pkgdesc="PyTorch implementation of adversarial attacks"
arch=(any)
url=https://github.com/Harry24k/adversarial-attacks-pytorch
depends=(python python-pytorch python-torchvision python-scipy python-tqdm python-requests python-numpy)
makedepends=(python-build python-installer python-wheel python-sphinx python-sphinx_rtd_theme)
license=(MIT)
source=($url/archive/refs/tags/v$pkgver.tar.gz)
sha256sums=('95cfce9631048d6b781bb273e129af706e22262cdf071bbd6d52256d62f96191')

build() {
    cd "$_name-$pkgver"
    python -m build --wheel --no-isolation

	cd docs
	make man
}

package() {
    cd "$_name-$pkgver"
    python -m installer --destdir="$pkgdir" dist/*.whl

	install -Dm644 LICENSE -t "$pkgdir/usr/share/licenses/$pkgname"

	MANPAGE="docs/_build/man/torchattacks.1"
	gzip -n "$MANPAGE"
	install -Dm644 "$MANPAGE.gz" "$pkgdir/usr/share/man/man1/torchattacks.1.gz"
}