blob: 0d5b71742b77aa86f75f9dcfe270d986a35806a9 (
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
36
37
38
39
40
41
42
43
44
45
|
# Maintainer: Laura Demkowicz-Duffy <dev at demkowiczduffy.co.uk>
# Contributor: GI_Jack <GI_Jack@hackermail.com>
# Poached from Arch Strike <team@archstrike.org>
pkgname=onionscan-git
pkgver=0.2.r8.da42865
pkgrel=2
pkgdesc="Tool to scan onion services(git version)"
arch=('armv6h' 'armv7h' 'x86_64' 'i686' 'aarch64')
url="https://github.com/s-rah/onionscan"
license=("MIT")
depends=('libexif' 'glibc')
makedepends=('go' 'git')
source=("$pkgname::git+https://github.com/s-rah/onionscan")
sha512sums=('SKIP')
pkgver() {
cd $pkgname
VER=$(printf "%s" "$(git describe --long | sed 's/\([^-]*-\)g/r\1/;s/-/./g')")
cut -d "." -f 2- <<< $VER
}
# see https://wiki.archlinux.org/title/Go_package_guidelines#Upstream_project_without_go_modules
prepare() {
cd $pkgname
if [ ! -f "go.mod" ]; then
go mod init "${url#https://}"
go mod tidy
fi
}
build() {
cd $pkgname
GOPATH="$srcdir" go get -d -t github.com/s-rah/onionscan
GOPATH="$srcdir" go build -o ${pkgname} -v github.com/s-rah/onionscan
}
package() {
cd $pkgname
install -dm755 "$pkgdir/usr/bin"
install -dm755 "$pkgdir/usr/share/$pkgname"
install -Dm755 ${pkgname} $pkgdir/usr/bin/onionscan
for i in config crawldb deanonymization design doc model onionscan protocol report spider templates utils webui; do cp -a --no-preserve=ownership $i "$pkgdir/usr/share/$pkgname/$i"; done
install -Dm644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
}
|