blob: e5f681982685d5ce5fb983e3c07a8a1b04aef5e1 (
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
46
47
48
49
50
51
52
53
54
55
|
# Maintainer: Javs <admin@fxs.life>
# Description: A versatile port-based automation engine designed for red team operations, optimized for network exploration and internal automation tasks.
pkgname=gogo-git
_gitname=gogo
pkgver=2.13.6
pkgrel=1
pkgdesc="A versatile port-based automation engine for red team operations, capable of scanning and extracting key information in complex network environments."
arch=('i686' 'x86_64' 'armv7h' 'aarch64' 'mips')
url="https://github.com/chainreactors/gogo.git"
license=('GPL')
depends=('go' 'git')
makedepends=('go' 'git')
source=('git+https://github.com/chainreactors/gogo.git')
md5sums=('SKIP')
prepare() {
cd "$srcdir/$_gitname"
git submodule update --init --recursive
pkgver="$pkgver-$(git rev-list --count HEAD)"
}
build() {
cd "$srcdir/$_gitname/v2"
case $CARCH in
x86_64)
GOARCH=amd64
;;
armv7h|aarch64)
GOARCH=arm64
;;
i686)
GOARCH=386
;;
mips)
GOARCH=mips
;;
*)
echo "Unknown architecture: $CARCH"
exit 1
;;
esac
GOOS=linux go mod tidy
GOOS=linux go generate
GOOS=linux go build -o gogo .
}
package() {
cd "$srcdir/$_gitname/v2"
install -Dm755 gogo "$pkgdir/usr/bin/gogo"
}
|